aboutsummaryrefslogtreecommitdiff
path: root/cypress
diff options
context:
space:
mode:
Diffstat (limited to 'cypress')
-rw-r--r--cypress/fixtures/example.json5
-rw-r--r--cypress/integration/example.spec.ts8
-rw-r--r--cypress/plugins/index.ts19
-rw-r--r--cypress/plugins/tsconfig.json9
-rw-r--r--cypress/support/commands.ts25
-rw-r--r--cypress/support/index.ts20
-rw-r--r--cypress/tsconfig.json10
7 files changed, 0 insertions, 96 deletions
diff --git a/cypress/fixtures/example.json b/cypress/fixtures/example.json
deleted file mode 100644
index 02e4254..0000000
--- 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/integration/example.spec.ts b/cypress/integration/example.spec.ts
deleted file mode 100644
index 7a8c909..0000000
--- a/cypress/integration/example.spec.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-// https://docs.cypress.io/api/introduction/api.html
-
-describe('My First Test', () => {
- it('visits the app root url', () => {
- cy.visit('/')
- cy.contains('h1', 'You did it!')
- })
-})
diff --git a/cypress/plugins/index.ts b/cypress/plugins/index.ts
deleted file mode 100644
index c6679b4..0000000
--- a/cypress/plugins/index.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/* eslint-env node */
-// ***********************************************************
-// This example plugins/index.ts can be used to load plugins
-//
-// You can change the location of this file or turn off loading
-// the plugins file with the 'pluginsFile' configuration option.
-//
-// You can read more here:
-// https://on.cypress.io/plugins-guide
-// ***********************************************************
-
-// This function is called when a project is opened or re-opened (e.g. due to
-// the project's config changing)
-
-export default ((on, config) => {
- // `on` is used to hook into various events Cypress emits
- // `config` is the resolved Cypress config
- return config
-}) as Cypress.PluginConfig
diff --git a/cypress/plugins/tsconfig.json b/cypress/plugins/tsconfig.json
deleted file mode 100644
index b5aedd5..0000000
--- a/cypress/plugins/tsconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "extends": "@vue/tsconfig/tsconfig.node.json",
- "include": ["./**/*"],
- "compilerOptions": {
- "module": "CommonJS",
- "preserveValueImports": false,
- "types": ["node", "cypress/types/cypress"]
- }
-}
diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts
deleted file mode 100644
index 119ab03..0000000
--- a/cypress/support/commands.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-// ***********************************************
-// This example commands.js shows you how to
-// create various custom commands and overwrite
-// existing commands.
-//
-// For more comprehensive examples of custom
-// commands please read more here:
-// https://on.cypress.io/custom-commands
-// ***********************************************
-//
-//
-// -- This is a parent command --
-// Cypress.Commands.add('login', (email, password) => { ... })
-//
-//
-// -- This is a child command --
-// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
-//
-//
-// -- This is a dual command --
-// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
-//
-//
-// -- This will overwrite an existing command --
-// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
diff --git a/cypress/support/index.ts b/cypress/support/index.ts
deleted file mode 100644
index d68db96..0000000
--- a/cypress/support/index.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-// ***********************************************************
-// This example support/index.js is processed and
-// loaded automatically before your test files.
-//
-// This is a great place to put global configuration and
-// behavior that modifies Cypress.
-//
-// You can change the location of this file or turn off
-// automatically serving support files with the
-// 'supportFile' configuration option.
-//
-// You can read more here:
-// https://on.cypress.io/configuration
-// ***********************************************************
-
-// Import commands.js using ES2015 syntax:
-import './commands'
-
-// Alternatively you can use CommonJS syntax:
-// require('./commands')
diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json
deleted file mode 100644
index a2dbf9e..0000000
--- a/cypress/tsconfig.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": ["./integration/**/*", "./support/**/*"],
- "compilerOptions": {
- "isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
- "types": ["cypress"]
- }
-}