From 77544089ce3df6647c8448e64572133f681e939e Mon Sep 17 00:00:00 2001 From: kevmodrome Date: Mon, 15 Jun 2020 10:41:38 +0200 Subject: [PATCH] adds ignore pattern to jest config so that it doesn't try to run cypress tests as unit tests --- packages/builder/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/builder/package.json b/packages/builder/package.json index 49331426b4..8456f0bfda 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -39,6 +39,9 @@ }, "transformIgnorePatterns": [ "/node_modules/(?!svelte).+\\.js$" + ], + "modulePathIgnorePatterns": [ + "/cypress/" ] }, "eslintConfig": {