From e912b1945c0544f60a5f118f86742d9a7b1b66b7 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 11 Nov 2023 06:10:57 -0300 Subject: src/{ircd,web}.js: Init stub servers --- tests/js/ircd.js | 7 +++++++ tests/js/web.js | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 tests/js/ircd.js create mode 100644 tests/js/web.js (limited to 'tests') diff --git a/tests/js/ircd.js b/tests/js/ircd.js new file mode 100644 index 0000000..08bb6dc --- /dev/null +++ b/tests/js/ircd.js @@ -0,0 +1,7 @@ +const { runTests } = require("../runner.js"); +const { } = require("../../src/ircd.js"); + +const tests = [ +]; + +runTests(tests); diff --git a/tests/js/web.js b/tests/js/web.js new file mode 100644 index 0000000..6562433 --- /dev/null +++ b/tests/js/web.js @@ -0,0 +1,7 @@ +const { runTests } = require("../runner.js"); +const { } = require("../../src/web.js"); + +const tests = [ +]; + +runTests(tests); -- cgit v1.2.3