diff --git a/cypress.json b/cypress.json index a8b2f0d73..59e0ef6cc 100644 --- a/cypress.json +++ b/cypress.json @@ -1,15 +1,15 @@ { "baseUrl": "http://localhost:8080/", - "fixturesFolder": "test/cypress/fixtures", - "integrationFolder": "test/cypress/integration", - "pluginsFile": "test/cypress/plugins/index.js", - "screenshotsFolder": "test/cypress/screenshots", - "supportFile": "test/cypress/support/index.js", - "videosFolder": "test/cypress/videos", + "fixturesFolder": "tests/cypress/fixtures", + "integrationFolder": "tests/cypress/integration", + "pluginsFile": "tests/cypress/plugins/index.js", + "screenshotsFolder": "tests/cypress/screenshots", + "supportFile": "tests/cypress/support/index.js", + "videosFolder": "tests/cypress/videos", "video": true, "component": { "componentFolder": "src", "testFiles": "**/*.spec.js", - "supportFile": "test/cypress/support/unit.js" + "supportFile": "tests/cypress/support/unit.js" } }