2017-02-06 21:56:22 -05:00
|
|
|
import { acceptance } from 'helpers/qunit-helpers';
|
|
|
|
acceptance('Choice Discourse', { loggedIn: true });
|
|
|
|
|
2017-02-12 19:35:59 -05:00
|
|
|
test('Choice Page Exists', () => {
|
|
|
|
visit('/users/eviltrout/choice');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
ok(exists('h1'), 'Choice');
|
|
|
|
ok(exists('.payments'), 'eviltrout');
|
|
|
|
});
|
|
|
|
});
|