aboutsummaryrefslogtreecommitdiff
path: root/cypress.config.ts
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 /cypress.config.ts
parent74ad512c266333c6df293d979ecaf435544205fa (diff)
downloadfaker-6e06418ff4c80acdd30262a8fe2db4b0d5d0d50b.tar.xz
faker-6e06418ff4c80acdd30262a8fe2db4b0d5d0d50b.zip
test: fix cypress doc tests (#1088)
Diffstat (limited to 'cypress.config.ts')
-rw-r--r--cypress.config.ts11
1 files changed, 11 insertions, 0 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,
+ },
+});