Skip to content

Instantly share code, notes, and snippets.

@travishorn
Last active October 24, 2024 17:44
Show Gist options
  • Save travishorn/e2fd3feef34ce08f7b5d2ab5aad328a8 to your computer and use it in GitHub Desktop.
Save travishorn/e2fd3feef34ce08f7b5d2ab5aad328a8 to your computer and use it in GitHub Desktop.
How to use Node's built in test runner and assertion library.

Node Tests

How to use Node's built in test runner and assertion library.

export function multiply(x, y) {
return x * y;
}
import { equal } from "node:assert";
import { multiply } from "../src/math.js";
equal(multiply(3, 4), 12);
{
"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