-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "puppeteer-practice",
"version": "1.0.0",
"description": "Automated software testing with Puppeteer",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --timeout=30000 ./tests",
"test:e2e": "./node_modules/mocha/bin/mocha --timeout=30000 ./tests/e2e",
"test-snapshots": "jest --config=jest.config.js --detectOpenHandles --forceExit",
"test-snapshots-update": "jest --config=jest.config.js --updateSnapshot --detectOpenHandles --forceExit",
"test:percy": "percy exec -- jest -i './tests-snapshots/_tests_/percy.test.js'"
},
"keywords": [
"Puppeteer",
"Mocha",
"Chai",
"Automation"
],
"author": "",
"license": "ISC",
"dependencies": {
"chai": "^4.3.6",
"jest": "^27.5.1",
"jest-image-snapshot": "^4.5.1",
"mocha": "^9.2.0",
"prettier": "^2.6.0",
"puppeteer": "^13.1.2"
},
"type": "module",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.formatOnSave": true
},
"devDependencies": {
"@percy/cli": "^1.0.0-beta.76",
"@percy/puppeteer": "^2.0.0",
"eslint": "^8.12.0"
}
}