summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/js/ircd.js7
-rw-r--r--tests/js/web.js7
2 files changed, 14 insertions, 0 deletions
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);