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:
Martin Brennan 2022-01-14 11:53:52 +10:00 committed by GitHub
parent 5d0c2cba07
commit bd5fd93e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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"],