uptime-kuma/test/backend-test
Zaid-maker 7668d3bd3e The tests now cover:
- All DNS record types
- Various DNS providers
- Edge cases and error conditions
- Response format validation
- Performance metrics
- Security validations
2024-11-27 12:13:22 +05: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-dns-monitor.js The tests now cover: 2024-11-27 12:13:22 +05:00
test-mqtt.js tests: add testcase for the mqtt monitor with testcontainers (#4451) 2024-10-17 16:25:45 +02:00
test-notification.js Replace all instances of example.com with test.mydomain.com 2024-11-20 19:37:55 +05: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

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