31 lines
806 B
JavaScript
31 lines
806 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Modal");
|
|
|
|
QUnit.test("modal", assert => {
|
|
visit('/');
|
|
|
|
andThen(() => {
|
|
assert.ok(find('.d-modal:visible').length === 0, 'there is no modal at first');
|
|
});
|
|
|
|
click('.login-button');
|
|
andThen(() => {
|
|
assert.ok(find('.d-modal:visible').length === 1, 'modal should appear');
|
|
});
|
|
|
|
click('.modal-outer-container');
|
|
andThen(() => {
|
|
assert.ok(find('.d-modal:visible').length === 0, 'modal should disappear when you click outside');
|
|
});
|
|
|
|
click('.login-button');
|
|
andThen(() => {
|
|
assert.ok(find('.d-modal:visible').length === 1, 'modal should reappear');
|
|
});
|
|
|
|
keyEvent('#main-outlet', 'keydown', 27);
|
|
andThen(() => {
|
|
assert.ok(find('.d-modal:visible').length === 0, 'ESC should close the modal');
|
|
});
|
|
});
|