uptime-kuma/test/backend-test
Frank Elsinga d6302198f3
chore(jsdoc):Linting fixes (#3703)
* fixed the lockfile having a different version

* jsdoc
2023-09-07 15:42:44 +08:00
..
README.md Don't run worst case test on GitHub Actions (#3688) 2023-09-05 02:08:18 +08:00
test-uptime-calculator.js chore(jsdoc):Linting fixes (#3703) 2023-09-07 15:42:44 +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 semver = require("semver");
let test;
const nodeVersion = process.versions.node;
if (semver.satisfies(nodeVersion, ">= 18")) {
    test = require("node:test");
} else {
    test = require("test");
}

const assert = require("node:assert");

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