From 9ebfb3509f325c5b8bcc35b6cc6cf526dd2f8af1 Mon Sep 17 00:00:00 2001 From: mateus-f-torres Date: Sat, 5 Sep 2020 18:08:18 -0300 Subject: [PATCH] fix(package.json): add "resolutions" field to prevent two Cypress vers @testing-library/cypress was downloading another version of Cypress; This would conflict with our installed version and crash on Travis CI; References: github.com/cypress-io/cypress/issues/4595 --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 767f355..986f37b 100755 --- a/package.json +++ b/package.json @@ -20,6 +20,9 @@ "test": "cypress run", "test:cypress": "cypress open" }, + "resolutions": { + "cypress": "4.9.0" + }, "dependencies": { "@material-ui/core": "^4.9.10", "@material-ui/icons": "^4.9.1",