-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "codeceptjs-visual-testing",
"version": "1.0.0",
"description": "A CodeceptJS E2E test helper that makes use of pixelmatch and a little dom interaction to make sure your UI doesn't unexpectedly change.",
"main": "index.js",
"scripts": {
"dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml run tests bash",
"test": "codeceptjs run --config tests/src/codecept.conf.js --verbose",
"test:build": "docker build . -t codeceptjs-visual-testing:local",
"test:server": "node tests/test-app/server.js",
"test:ci": "docker compose run tests",
"test:docker": "docker compose -f docker-compose.yml -f docker-compose.dev.yml run tests",
"test:update": "UPDATE_VISUALS=1 codeceptjs run --config tests/src/codecept.conf.js --verbose"
},
"keywords": [
"Codeceptjs",
"Visual",
"Testing",
"UI",
"Testing",
"E2E",
"Acceptance",
"Testing",
"Helper"
],
"files": ["index.js"],
"author": "Matthew Spero",
"license": "MIT",
"dependencies": {
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0"
},
"devDependencies": {
"codeceptjs": "^3.2.2",
"puppeteer": "^11.0.0"
}
}