From 63c30c331d2333c51d5974803ca44da87a0c6f62 Mon Sep 17 00:00:00 2001 From: katspaugh Date: Wed, 27 Dec 2023 15:30:02 +0100 Subject: [PATCH] Rm unused cypress files --- cypress/fixtures/example.json | 5 ----- cypress/plugins/index.ts | 6 ------ 2 files changed, 11 deletions(-) delete mode 100644 cypress/fixtures/example.json delete mode 100644 cypress/plugins/index.ts diff --git a/cypress/fixtures/example.json b/cypress/fixtures/example.json deleted file mode 100644 index 02e425437..000000000 --- a/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/cypress/plugins/index.ts b/cypress/plugins/index.ts deleted file mode 100644 index 673158d9d..000000000 --- a/cypress/plugins/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export default (on) => { - on('before:browser:launch', (_, launchOptions) => { - launchOptions.args.push('--force-device-scale-factor=2') - return launchOptions - }) -}