You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uptime-kuma/test/backend-test
Zaid-maker ee70e245f0
The test suite now provides:
2 months ago
..
monitor-conditions
README.md
test-dns-monitor.js The tests now cover: 2 months ago
test-mqtt.js The test suite now provides: 2 months ago
test-notification.js Replace all instances of example.com with test.mydomain.com 2 months ago
test-rabbitmq.js
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