mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-05 06:20:44 -05:00
feat: Use .config files (#18578)
Co-authored-by: Tim Griesser <tgriesser10@gmail.com>
This commit is contained in:
committed by
GitHub
parent
469b228cde
commit
081dd19cc6
@@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
'baseUrl': 'http://localhost:3000',
|
||||
'fixturesFolder': false,
|
||||
'supportFile': false,
|
||||
'viewportWidth': 600,
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"baseUrl": "http://localhost:3000",
|
||||
"fixturesFolder": false,
|
||||
"supportFile": false,
|
||||
"viewportWidth": 600
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
module.exports = {
|
||||
'fixturesFolder': false,
|
||||
'supportFile': false,
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"fixturesFolder": false,
|
||||
"supportFile": false
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import { defineConfig } from 'cypress'
|
||||
|
||||
export default defineConfig({
|
||||
'fixturesFolder': false,
|
||||
'supportFile': false,
|
||||
})
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"fixturesFolder": false,
|
||||
"supportFile": false
|
||||
}
|
||||
Reference in New Issue
Block a user