DEV: Fix missing test paths for Ember CLI (#15578)
Since 6272edd121
some tests were
not loading for Ember CLI, this commit adds the missing paths so
all the tests load.
This commit is contained in:
parent
5d0c2cba07
commit
bd5fd93e81
|
@ -74,7 +74,9 @@ module.exports = function (defaults) {
|
|||
inputFiles: [
|
||||
"**/tests/acceptance/*.js",
|
||||
"**/tests/integration/*.js",
|
||||
"**tests/unit/*.js",
|
||||
"**/tests/integration/**/*.js",
|
||||
"**/tests/unit/*.js",
|
||||
"**/tests/unit/**/*.js",
|
||||
],
|
||||
headerFiles: ["vendor/ember-cli/tests-prefix.js"],
|
||||
footerFiles: ["vendor/ember-cli/app-config.js"],
|
||||
|
|
Loading…
Reference in New Issue