mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-24 07:14:04 +00:00
22 lines
339 B
Markdown
22 lines
339 B
Markdown
# 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
|
|
```
|