From 3c7f1f433e0bd5b3e14b309655d221db442bf89a Mon Sep 17 00:00:00 2001 From: PtrHtn Date: Wed, 12 Jan 2022 18:35:32 -0300 Subject: [PATCH] chore: enable unit testing support for tests that are located in cypress/component (#266) --- cypress.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress.json b/cypress.json index 49a1ee646..669432bbc 100644 --- a/cypress.json +++ b/cypress.json @@ -1,5 +1,6 @@ { "baseUrl": "http://localhost:3001", "testFiles": "**/*spec.py.{js,jsx,ts,tsx}", - "componentFolder": "src" + "experimentalComponentTesting": true, + "componentFolder": "cypress/component" }