11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
import { acceptance } from 'helpers/qunit-helpers';
|
|
acceptance('Choice Discourse', { loggedIn: true });
|
|
|
|
test('Choice Page Exists', () => {
|
|
visit('/choice/form');
|
|
|
|
andThen(() => {
|
|
ok(exists('h1'), 'Choice');
|
|
});
|
|
});
|