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: [
'/node_modules/',
'<rootDir>/examples/getstarted/',
'<rootDir>/examples/kitchensink/',
'<rootDir>/packages/strapi-helper-plugin/dist/',
'/OLD/',
'__tests__',

View File

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