diff options
Diffstat (limited to 'modules/test-assert.js')
-rw-r--r-- | modules/test-assert.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/test-assert.js b/modules/test-assert.js deleted file mode 100644 index 7be2989..0000000 --- a/modules/test-assert.js +++ /dev/null @@ -1,21 +0,0 @@ -import { strict as assert } from 'node:assert'; - -function test(description, func) -{ - process.stdout.write(description); - let error = null; - try { - func(); - } - catch(err) { - error = err; - } - - if (error) { - console.log(' - FAIL'); - console.log(error); - } - else console.log(' - OK'); -} - -export { test, assert }; |