How to use Node's built in test runner and assertion library.
Last active
October 24, 2024 17:44
-
-
Save travishorn/e2fd3feef34ce08f7b5d2ab5aad328a8 to your computer and use it in GitHub Desktop.
How to use Node's built in test runner and assertion library.
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
export function multiply(x, y) { | |
return x * y; | |
} |
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
import { equal } from "node:assert"; | |
import { multiply } from "../src/math.js"; | |
equal(multiply(3, 4), 12); |
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
{ | |
"name": "node-test", | |
"version": "0.1.0", | |
"scripts": { | |
"test": "node --test", | |
"test:watch": "node --test --watch" | |
} | |
"type": "module" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment