-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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": "example-jest.puppeteer.screenshots",
"version": "1.0.0",
"description": "A *Example repo* to show how Jest, Puppeteer, and Testspace can work together capturing screenshots on test failures. The repo demonstrates how to capture `screenshots` of failing tests and attach them to the associated `suite` when publishing test results to Testspace.",
"main": "index.js",
"scripts": {
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testspace-com/example-jest.puppeteer.screenshots.git"
},
"keywords": [
"jest",
"puppeteer",
"jest-puppeteer",
"jest-image-snapshot",
"testspace",
"examples"
],
"author": "Mark Underseth",
"license": "ISC",
"bugs": {
"url": "https://github.com/testspace-com/example-jest.puppeteer.screenshots/issues"
},
"homepage": "https://github.com/testspace-com/example-jest.puppeteer.screenshots#readme",
"devDependencies": {
"jest": "^29.6.2",
"jest-image-snapshot": "6.x",
"jest-junit": "16.x",
"jest-puppeteer": "^9.0.0",
"puppeteer": "^21.0.2"
},
"jest-junit": {
"addFileAttribute": "true",
"includeShortConsoleOutput": "true",
"reportTestSuiteErrors": "true"
}
}