Skip to content

Commit b01015e

Browse files
committed
Install and config Cypress to Automated Acceptance Testing
1 parent 1182554 commit b01015e

File tree

4 files changed

+1397
-148
lines changed

4 files changed

+1397
-148
lines changed

.eslintrc.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
module.exports = {
22
root: true,
33
env: {
4+
"cypress/globals": true,
45
browser: true,
56
node: true
67
},
78
extends: 'standard',
9+
plugins: [
10+
"cypress"
11+
],
812
// add your custom rules here
913
rules: {},
1014
globals: {}

cypress.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"baseUrl": "http://localhost:8080",
3+
"fixturesFolder": "tests/e2e/fixtures",
4+
"integrationFolder": "tests/e2e/integration",
5+
"fileServerFolder": "demo",
6+
"pluginsFile": false,
7+
"supportFile": false,
8+
"videoRecording": false
9+
}

0 commit comments

Comments
 (0)