2017-02-06 21:56:22 -05:00
|
|
|
import { acceptance } from 'helpers/qunit-helpers';
|
2017-02-23 20:51:26 -05:00
|
|
|
acceptance('Discourse Donations', { loggedIn: true });
|
2017-02-06 21:56:22 -05:00
|
|
|
|
2017-02-23 21:09:27 -05:00
|
|
|
test('Donations Link Exists', () => {
|
2017-03-13 21:43:11 -04:00
|
|
|
visit('/');
|
2017-02-13 18:19:59 -05:00
|
|
|
|
|
|
|
andThen(() => {
|
2017-03-13 21:43:11 -04:00
|
|
|
ok(exists('.list-controls .donate a'), 'Link exists on profile page');
|
2017-02-13 18:19:59 -05:00
|
|
|
});
|
|
|
|
});
|