Skip to content

Commit be2cbed

Browse files
committed
fix meta.js when no unit AND e2e test option was selected
1 parent aeb594a commit be2cbed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

meta.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ module.exports = {
106106
".eslintignore": "lint",
107107
"config/test.env.js": "unit || e2e",
108108
"test/unit/**/*": "unit",
109-
"test/unit/index.js": "runner === 'karma'",
110-
"test/unit/karma.conf.js": "runner === 'karma'",
111-
"test/unit/specs/index.js": "runner === 'karma'",
112-
"test/unit/setup.js": "runner === 'jest'",
109+
"test/unit/index.js": "unit && runner === 'karma'",
110+
"test/unit/karma.conf.js": "unit && runner === 'karma'",
111+
"test/unit/specs/index.js": "unit && runner === 'karma'",
112+
"test/unit/setup.js": "unit && runner === 'jest'",
113113
"test/e2e/**/*": "e2e",
114114
"src/router/**/*": "router"
115115
},

0 commit comments

Comments
 (0)