Skip to content

Instantly share code, notes, and snippets.

@kcmr
Created June 17, 2018 21:18
Show Gist options
  • Save kcmr/6f9be0a44649ed680b59afb54e390b9f to your computer and use it in GitHub Desktop.
Save kcmr/6f9be0a44649ed680b59afb54e390b9f to your computer and use it in GitHub Desktop.
suite('Setting "opened" as true', () => {
const sut = fixture('someId');
suiteSetup(() => {
sut.opened = true;
});
test('opens the modal', () => {
assert.isTrue(isVisible(sut));
});
test('"aria-hidden" attribute is set to false', () => {
assert.equal(sut.getAttribute('aria-hidden'), 'false');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment