Last active
May 23, 2019 14:57
-
-
Save jtenner/6c7f7f2fef758f697f363990dc6cb5bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe("A failing test", (): void => { | |
it("should fail", (): void => { | |
expect<bool>(false).toBeTruthy("Show this message, because we expect a falsy value to be truthy!"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment