0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-22 03:07:50 +01:00
uptime-kuma/test/backend-test/README.md

23 lines
339 B
Markdown
Raw Permalink Normal View History

# 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);
});
```
2023-10-02 23:48:21 +02:00
## Run
```bash
npm run test-backend
```