diff options
author | EuAndreh <eu@euandre.org> | 2023-11-11 06:10:57 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-11-11 06:13:43 -0300 |
commit | e912b1945c0544f60a5f118f86742d9a7b1b66b7 (patch) | |
tree | 92d6e75a9bb2dada2f58dcbf4f9bd1180c30ed7b /tests | |
parent | TODOs.md: Add #td-d27aca11-9449-bb0e-08cb-2a8ef9778a11 (diff) | |
download | papod-e912b1945c0544f60a5f118f86742d9a7b1b66b7.tar.gz papod-e912b1945c0544f60a5f118f86742d9a7b1b66b7.tar.xz |
src/{ircd,web}.js: Init stub servers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/js/ircd.js | 7 | ||||
-rw-r--r-- | tests/js/web.js | 7 |
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); |