Skip to content

Instantly share code, notes, and snippets.

@kcmr
Created June 17, 2018 21:18
Show Gist options
  • Save kcmr/5d8e312d5227a7044327cf5f6094f758 to your computer and use it in GitHub Desktop.
Save kcmr/5d8e312d5227a7044327cf5f6094f758 to your computer and use it in GitHub Desktop.
test('calling toggle() method changes the modal visibility', () => {
// Arrange
const initialVisibility = isVisilble(sut); // false
// Act
sut.toggle();
// Assert
assert.notEqual(isVisilble(sut), initialVisibility);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment