From 9e1bd31c364a0ee42d2d5bba44eb8325ed573124 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sat, 5 Nov 2022 17:49:41 -0700 Subject: [PATCH] add module exports to unittest.js Signed-off-by: Arthur Lu --- unittest/unittest.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unittest/unittest.js b/unittest/unittest.js index 5b9cc35..c72bea1 100644 --- a/unittest/unittest.js +++ b/unittest/unittest.js @@ -4,4 +4,6 @@ function test(name, items) {} function item(name, method) {} -function assert(result, expected) {} \ No newline at end of file +function assert(result, expected) {} + +module.exports = {environment, test, item, assert}; \ No newline at end of file