From a44d1bf2d0ce342bb7217ebd81392e0941fcbfcc Mon Sep 17 00:00:00 2001 From: Cayman Date: Mon, 30 Nov 2020 10:12:18 -0600 Subject: [PATCH] Add named export test to browser test cases --- karma.conf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/karma.conf.js b/karma.conf.js index 4599b2a..1423525 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -6,7 +6,7 @@ module.exports = function(config) { basePath: "", frameworks: ["mocha", "chai"], - files: ["test/unit/run-web-implementation.test.ts"], + files: ["test/unit/run-web-implementation.test.ts", "test/unit/index-named-exports.test.ts"], exclude: [], preprocessors: { "test/**/*.ts": ["webpack"] @@ -23,4 +23,4 @@ module.exports = function(config) { singleRun: true }); -}; \ No newline at end of file +};