mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-02 07:39:26 +00:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
import { acceptance } from 'helpers/qunit-helpers';
|
|
acceptance('Discourse Donations', { loggedIn: true });
|
|
|
|
test('Donations Link Exists', () => {
|
|
visit('/');
|
|
|
|
andThen(() => {
|
|
ok(exists('.list-controls .donate a'), 'Link exists on profile page');
|
|
});
|
|
});
|