mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
Async tests should use in integrations tests. Acceptance tests are using Mirage and can't use since we can't know the number of assertions.
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { find, click, render } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import { startMirage } from 'nomad-ui/initializers/ember-cli-mirage';
|
|
import { componentA11yAudit } from 'nomad-ui/tests/helpers/a11y-audit';
|
|
|
|
module('Integration | Component | page layout', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
this.server = startMirage();
|
|
});
|
|
|
|
hooks.afterEach(function () {
|
|
this.server.shutdown();
|
|
});
|
|
|
|
test('the global-header hamburger menu opens the gutter menu', async function (assert) {
|
|
assert.expect(3);
|
|
|
|
await render(hbs`<PageLayout />`);
|
|
|
|
assert.notOk(
|
|
find('[data-test-gutter-menu]').classList.contains('is-open'),
|
|
'Gutter menu is not open'
|
|
);
|
|
await click('[data-test-header-gutter-toggle]');
|
|
|
|
assert.ok(
|
|
find('[data-test-gutter-menu]').classList.contains('is-open'),
|
|
'Gutter menu is open'
|
|
);
|
|
await componentA11yAudit(this.element, assert);
|
|
});
|
|
|
|
test('the gutter-menu hamburger menu closes the gutter menu', async function (assert) {
|
|
await render(hbs`<PageLayout />`);
|
|
|
|
await click('[data-test-header-gutter-toggle]');
|
|
|
|
assert.ok(
|
|
find('[data-test-gutter-menu]').classList.contains('is-open'),
|
|
'Gutter menu is open'
|
|
);
|
|
await click('[data-test-gutter-gutter-toggle]');
|
|
|
|
assert.notOk(
|
|
find('[data-test-gutter-menu]').classList.contains('is-open'),
|
|
'Gutter menu is not open'
|
|
);
|
|
});
|
|
|
|
test('the gutter-menu backdrop closes the gutter menu', async function (assert) {
|
|
await render(hbs`<PageLayout />`);
|
|
|
|
await click('[data-test-header-gutter-toggle]');
|
|
|
|
assert.ok(
|
|
find('[data-test-gutter-menu]').classList.contains('is-open'),
|
|
'Gutter menu is open'
|
|
);
|
|
await click('[data-test-gutter-backdrop]');
|
|
|
|
assert.notOk(
|
|
find('[data-test-gutter-menu]').classList.contains('is-open'),
|
|
'Gutter menu is not open'
|
|
);
|
|
});
|
|
});
|