You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
339 B
23 lines
339 B
# Node.js Test Runner
|
|
|
|
Documentation: https://nodejs.org/api/test.html
|
|
|
|
Create a test file in this directory with the name `*.js`.
|
|
|
|
## Template
|
|
|
|
```js
|
|
const test = require("node:test");
|
|
const assert = require("node:assert");
|
|
|
|
test("Test name", async (t) => {
|
|
assert.strictEqual(1, 1);
|
|
});
|
|
```
|
|
|
|
## Run
|
|
|
|
```bash
|
|
npm run test-backend
|
|
```
|