From f710733b33b48b841230ae9312d766d489a466a8 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Mon, 26 Feb 2024 12:47:19 -0500 Subject: [PATCH] Delete unused cypress.config file (#10365) --- packages/e2e-tests/cypress.config.ts | 17 ----------------- tsconfig.json | 6 ++---- 2 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 packages/e2e-tests/cypress.config.ts diff --git a/packages/e2e-tests/cypress.config.ts b/packages/e2e-tests/cypress.config.ts deleted file mode 100644 index 5aa2417bc26..00000000000 --- a/packages/e2e-tests/cypress.config.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { defineConfig } from "cypress"; - -import cypressReplay from "@replayio/cypress"; - -export default defineConfig({ - e2e: { - defaultCommandTimeout: 30000, - requestTimeout: 30000, - baseUrl: "http://localhost:8080", - screenshotOnRunFailure: false, - video: false, - setupNodeEvents(on, config) { - cypressReplay(on, config); - return config; - }, - }, -}); diff --git a/tsconfig.json b/tsconfig.json index 0072d296219..416b10aae7a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -88,12 +88,10 @@ "exclude": [ "node_modules", - // exclude Cypress from root typechecking to avoid conflicts with globals - // like expect() + // exclude Cypress from root typechecking to avoid conflicts with globals like expect() "packages/e2e-tests/examples/**/*.ts*", "packages/e2e-tests/**/*.cy.ts", - "packages/e2e-tests/cypress.config.ts", "packages/e2e-tests/scripts/*.ts", ], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"] -} +} \ No newline at end of file