mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-08-30 15:01:12 +00:00
91f31f56cb
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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