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

11 lines
279 B
Plaintext
Raw Normal View History

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-02-13 18:19:59 -05:00
visit('/users/eviltrout');
andThen(() => {
2017-02-23 21:09:27 -05:00
ok(exists('.discourse-donations > a'), 'Link exists on profile page');
2017-02-13 18:19:59 -05:00
});
});