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

11 lines
277 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-13 18:19:59 -05:00
test('Payments Link Exists', () => {
visit('/users/eviltrout');
andThen(() => {
ok(exists('.discourse-payments > a'), 'Link exists on profile page');
});
});