uptime-kuma/test/backend-test
ianlv 54b0c89ea5
chore: fix typos in code comments (#5966)
Signed-off-by: ianlv <sunlvyun@outlook.com>
2025-07-02 16:18:13 +02:00
..
monitor-conditions Monitor Conditions (#5048) 2024-08-30 21:48:13 +02:00
README.md Removed now unnecessary version checking (#4815) 2024-08-24 18:38:50 +02:00
test-mqtt.js chore: fix typos in code comments (#5966) 2025-07-02 16:18:13 +02:00
test-rabbitmq.js feat: add `RabbitMQ` monitor (#5199) 2024-10-20 15:57:03 +02:00
test-uptime-calculator.js Removed now unnecessary version checking (#4815) 2024-08-24 18:38:50 +02:00

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