We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f40683f commit 387a36eCopy full SHA for 387a36e
.mocharc.yml
@@ -3,8 +3,12 @@
3
# https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml
4
5
6
-# Test files
7
-spec: test/specs/**/*.spec.js
+spec:
+ # Test fixtures
8
+ - test/fixtures/**/*.js
9
+
10
+ # Test files
11
+ - test/specs/**/*.spec.js
12
13
# Abort after first test failure
14
bail: true
karma.conf.js
@@ -8,6 +8,7 @@ const { host } = require("./");
module.exports = karmaConfig({
sourceDir: "esm",
+ fixtures: "test/fixtures/**/*.js",
browsers: {
chrome: true,
firefox: host.os.linux,
test/specs/__debug.spec.js renamed to test/fixtures/debug.js
0 commit comments