mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-13 21:04:46 +00:00
- Better test organization - More comprehensive coverage - Improved error handling - Better async cleanup - More realistic test scenarios |
||
---|---|---|
.. | ||
monitor-conditions | ||
README.md | ||
test-dns-monitor.js | ||
test-mqtt.js | ||
test-notification.js | ||
test-rabbitmq.js | ||
test-uptime-calculator.js |
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