-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 1.18 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
{
"name": "visual-testing-revolution-playwright",
"version": "2.0.0",
"description": "This is the companion project for [Pandy Knight's](https://twitter.com/AutomationPanda) talk, *The Visual Testing Revolution*. It is a small but complete test automation project written in TypeScript. It contains a traditional functional test using [Playwright](https://playwright.dev/) for a demo web app, as well as a visual test for the same app using [Applitools Visual AI](https://applitools.com/applitools-ai-and-deep-learning/).",
"main": "index.js",
"scripts": {
"test": "npx playwright test --project=chromium",
"test:ui": "npx playwright test --ui",
"codegen": "npx playwright codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AutomationPanda/visual-testing-revolution-playwright.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AutomationPanda/visual-testing-revolution-playwright/issues"
},
"homepage": "https://github.com/AutomationPanda/visual-testing-revolution-playwright#readme",
"devDependencies": {
"@applitools/eyes-playwright": "^1.17.15",
"@playwright/test": "^1.36.0"
}
}