Files
discourse-subscriptions/test/javascripts/acceptance/discourse-donations-test.es6
T

11 lines
264 B
JavaScript
Raw Normal View History

2017-02-07 13:56:22 +11:00
import { acceptance } from 'helpers/qunit-helpers';
2017-02-24 12:51:26 +11:00
acceptance('Discourse Donations', { loggedIn: true });
2017-02-07 13:56:22 +11:00
2017-02-24 13:09:27 +11:00
test('Donations Link Exists', () => {
2017-03-14 12:43:11 +11:00
visit('/');
2017-02-14 10:19:59 +11:00
andThen(() => {
2017-03-14 12:43:11 +11:00
ok(exists('.list-controls .donate a'), 'Link exists on profile page');
2017-02-14 10:19:59 +11:00
});
});