From 318c7ecb3ba5e3d3dda67c9f41bc796bdb408298 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 49331426b..8456f0bfd 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -39,6 +39,9 @@ }, "transformIgnorePatterns": [ "/node_modules/(?!svelte).+\\.js$" + ], + "modulePathIgnorePatterns": [ + "/cypress/" ] }, "eslintConfig": {