aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinigami <[email protected]>2022-06-23 16:00:10 +0200
committerGitHub <[email protected]>2022-06-23 16:00:10 +0200
commit6e06418ff4c80acdd30262a8fe2db4b0d5d0d50b (patch)
treea4df7cdc458697edea27fe34862b7e88b60cbacc
parent74ad512c266333c6df293d979ecaf435544205fa (diff)
downloadfaker-6e06418ff4c80acdd30262a8fe2db4b0d5d0d50b.tar.xz
faker-6e06418ff4c80acdd30262a8fe2db4b0d5d0d50b.zip
test: fix cypress doc tests (#1088)
-rw-r--r--cypress.config.ts11
-rw-r--r--cypress.json12
2 files changed, 11 insertions, 12 deletions
diff --git a/cypress.config.ts b/cypress.config.ts
new file mode 100644
index 00000000..de0aceaf
--- /dev/null
+++ b/cypress.config.ts
@@ -0,0 +1,11 @@
+import { defineConfig } from 'cypress';
+
+export default defineConfig({
+ video: false,
+ e2e: {
+ chromeWebSecurity: false,
+ baseUrl: 'http://localhost:5000',
+ supportFile: false,
+ fixturesFolder: false,
+ },
+});
diff --git a/cypress.json b/cypress.json
deleted file mode 100644
index 011099fd..00000000
--- a/cypress.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "video": false,
- "e2e": {
- "chromeWebSecurity": false,
- "baseUrl": "http://localhost:5000",
- "integrationFolder": "cypress/e2e",
- "testFiles": "**/*.cy.*",
- "pluginsFile": false,
- "supportFile": false,
- "fixturesFolder": false
- }
-}