Require explicit call to run tests.

This commit is contained in:
hackademix 2024-11-09 17:00:59 +01:00
parent dc6ee399dd
commit 7753e5345c
No known key found for this signature in database
GPG Key ID: 231A83AFDA9C2434
3 changed files with 6 additions and 4 deletions

View File

@ -352,8 +352,9 @@
}
},
test() {
include("/test/run.js");
async test() {
await include("/test/run.js"); // DEV_ONLY
runTests();
},
async testIC(callbackOrUrl) {

View File

@ -18,7 +18,7 @@
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
(async () => {
globalThis.runTests = async () => {
await include("/nscl/test/Test.js");
Test.include([
"/nscl/test/Policy_test.js",
@ -27,4 +27,4 @@
"XSS",
"embargoed/XSS",
]);
})();
};

1
src/test/test Symbolic link
View File

@ -0,0 +1 @@
../src/test