mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-04 12:14:03 +00:00
.. | ||
README.md | ||
test-general.js | ||
test-uptime-calculator.js | ||
util.js |
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