mirror of https://github.com/louislam/uptime-kuma
36f8be040d | ||
---|---|---|
.. | ||
monitor-conditions | ||
README.md | ||
test-uptime-calculator.js |
README.md
Node.js Test Runner
Documentation: https://nodejs.org/api/test.html
Create a test file in this directory with the name *.js
.
Template
const test = require("node:test");
const assert = require("node:assert");
test("Test name", async (t) => {
assert.strictEqual(1, 1);
});
Run
npm run test-backend