From e30a73fa5cef29bcc72de23d193f0a2e0a44ad22 Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Tue, 7 May 2019 13:30:00 +0200 Subject: [PATCH] Add jest config to avoid runing e2e tests when running unit tests --- packages/strapi/jest.config.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 packages/strapi/jest.config.js diff --git a/packages/strapi/jest.config.js b/packages/strapi/jest.config.js new file mode 100644 index 0000000000..ad90a4373d --- /dev/null +++ b/packages/strapi/jest.config.js @@ -0,0 +1,3 @@ +module.exports = { + testMatch: ['**/(*.)+(spec|test).js'], +};