uptime-kuma/test/backend-test
Louis Lam c3b166bd8f WIP
2023-12-27 19:31:17 +08:00
..
README.md WIP 2023-12-27 19:31:17 +08:00
test-general.js WIP 2023-12-27 19:31:17 +08:00
test-uptime-calculator.js WIP 2023-12-27 19:31:17 +08:00
util.js WIP 2023-12-27 19:31:17 +08:00

Node.js Test Runner

Documentation: https://nodejs.org/api/test.html

Create a test file in this directory with the name *.js.

Template

const { assert, test, describe, it } = require("./util");

test("Test name", async (t) => {
    assert.strictEqual(1, 1);
});

Run

Node.js >=18

npm run test-backend:18

Node.js < 18

npm run test-backend:14