Acceptance test runs without crashing
This commit is contained in:
parent
29ec7ec45c
commit
473df7bd60
|
@ -1,10 +1,11 @@
|
|||
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');
|
||||
});
|
||||
acceptance('Discourse Donations', {
|
||||
loggedIn: true,
|
||||
settings: {},
|
||||
});
|
||||
|
||||
test('test runs without a crash', (assert) => {
|
||||
visit('/');
|
||||
assert.ok(true, 'test runs');
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue