Skip to content

Instantly share code, notes, and snippets.

@ng-the-engineer
Created January 17, 2021 16:56
Show Gist options
  • Save ng-the-engineer/9c06e1138ff36e8e9cd8fb24c033accd to your computer and use it in GitHub Desktop.
Save ng-the-engineer/9c06e1138ff36e8e9cd8fb24c033accd to your computer and use it in GitHub Desktop.
Code snippet: Dummy test.ts
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