Created
January 17, 2021 16:56
-
-
Save ng-the-engineer/9c06e1138ff36e8e9cd8fb24c033accd to your computer and use it in GitHub Desktop.
Code snippet: Dummy test.ts
This file contains hidden or 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
import { sum } from "./dummy"; | |
test("Dummy unit test", () => { | |
const actual = sum(1, 2); | |
expect(actual).toBe(3); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment