We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6589ca0 commit fbefa8fCopy full SHA for fbefa8f
cypress/cypress.json
@@ -1,12 +1,13 @@
1
{
2
- "baseUrl": "http://localhost:8888",
+ "baseUrl": "http://localhost:8080",
3
"ignoreTestFiles": [
4
"**/__snapshots__/*",
5
"**/__image_snapshots__/*"
6
],
7
"env": {
8
"cypress-plugin-snapshots": {
9
"serverPort": 2222,
10
+ "diffLines": 4,
11
"excludeFields": ["ignore"]
12
}
13
},
cypress/test-server/index.js
@@ -2,7 +2,7 @@ const express = require('express');
const path = require('path');
const app = express();
-const port = 8888
+const port = 8080
app.get('/', (req, res) => res.send('Test server running!'))
app.use('/static', express.static(path.join(__dirname, 'static')))
0 commit comments