uptime-kuma/test/backend-test/README.md

30 lines
391 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
2023-12-27 19:31:17 +08:00
const { assert, test, describe, it } = require("./util");
test("Test name", async (t) => {
assert.strictEqual(1, 1);
});
```
2023-10-02 21:48:21 +00:00
## Run
Node.js >=18
```bash
npm run test-backend:18
```
Node.js < 18
```bash
npm run test-backend:14
```