Exclude kitchensink app from tests

Signed-off-by: soupette <cyril@strapi.io>
This commit is contained in:
soupette 2021-09-09 08:20:27 +02:00
parent 939bc96021
commit b38ab6fc73
2 changed files with 3 additions and 1 deletions

View File

@ -64,6 +64,7 @@ module.exports = {
testPathIgnorePatterns: [ testPathIgnorePatterns: [
'/node_modules/', '/node_modules/',
'<rootDir>/examples/getstarted/', '<rootDir>/examples/getstarted/',
'<rootDir>/examples/kitchensink/',
'<rootDir>/packages/strapi-helper-plugin/dist/', '<rootDir>/packages/strapi-helper-plugin/dist/',
'/OLD/', '/OLD/',
'__tests__', '__tests__',

View File

@ -14,6 +14,7 @@
"**/build/*", "**/build/*",
"**/*.test.js", "**/*.test.js",
"**/*.test.e2e.js", "**/*.test.e2e.js",
"**/examples/getstarted/*" "**/examples/getstarted/*",
"**/examples/kitchensink/*"
] ]
} }