mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-12-08 16:45:28 +01:00
Co-authored-by: Dalton Pearson <dalton.pearson@praemo.com> Co-authored-by: Frank Elsinga <frank@elsinga.de> |
||
|---|---|---|
| .. | ||
| monitor-conditions | ||
| README.md | ||
| test-cert-hostname-match.js | ||
| test-grpc.js | ||
| test-mqtt.js | ||
| test-postgres.js | ||
| test-rabbitmq.js | ||
| test-tcp.js | ||
| test-uptime-calculator.js | ||
| test-websocket.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