-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1.04 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
{
"name": "testes-automatizados-web-front-serve-rest_playwright-javascript",
"version": "1.0.0",
"description": "Projeto de Testes Automatizados E2E no front e API REST do ServeRest em Playwright e Javascript",
"main": "playwright.config.js",
"scripts": {
"pw:ui": "playwright test --ui",
"pw:ui:local": "ENV environment=local playwright test --ui",
"test": "playwright test --project=chromium",
"test:ff": "playwright test --project=firefox",
"test:local": "ENV environment=local playwright test --project=chromium",
"test:local:ff": "ENV environment=local playwright test --project=firefox",
"test:headed": "playwright test --project=chromium --headed",
"test:headed:ff": "playwright test --project=firefox --headed",
"test:local:headed": "ENV environment=local playwright test --project=chromium --headed",
"test:local:headed:ff": "ENV environment=local playwright test --project=firefox --headed"
},
"author": "Andressa Karla",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.42.1"
}
}