Skip to content

Commit 6f715ec

Browse files
author
John Hill
committed
fixing default package.json
1 parent d77e905 commit 6f715ec

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
frameworks/playwright/*.png

frameworks/cypress/cypress.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"video": false,
44
"supportFile": false,
55
"fixturesFolder": false,
6-
"screenshotsFolder": "./cypress-test/screenshots",
6+
"screenshotsFolder": "./frameworks/cypress/screenshots",
77
"pluginsFile": false,
8-
"integrationFolder": "integration/"
8+
"integrationFolder": "./frameworks/cypress/integration/"
99
}

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,15 @@
1919
"wdio-intercept-service": "4.1.2",
2020
"expect-playwright": "0.2.5",
2121
"mocha": "^6.1.4",
22-
"selenium-webdriver": "^4.0.0-alpha.7",
23-
"cypress": "^4.11.0"
22+
"selenium-webdriver": "^4.0.0-alpha.7"
2423
},
2524
"scripts": {
2625
"test:selenium": "mocha ./frameworks/selenium/tests/*.js --timeout 10000",
2726
"test:webdriverio:webdriver": "wdio ./frameworks/webdriverio/wdio.conf.js",
2827
"test:webdriverio:puppeteer": "wdio ./frameworks/webdriverio/wdio.puppet.conf.js",
2928
"test:playwright:multi-browser": "node ./frameworks/playwright/RWA.multi.js",
3029
"test:playwright:headful": "node ./frameworks/playwright/headful.js",
31-
"test:cypress:open": "node ./frameworks/cypress open",
32-
"test:cypress:headless": "node_modeules/.bin/cypress run --browser chrome"
30+
"test:cypress:open": "node ./node_modules/cypress/bin/cypress open --config-file ./frameworks/cypress/cypress.json",
31+
"test:cypress:headless": "node ./node_modules/cypress/bin/cypress run --config-file ./frameworks/cypress/cypress.json --browser chrome"
3332
}
3433
}

0 commit comments

Comments
 (0)