-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.19 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
{
"name": "playwright-serverest",
"description": "Estudo de Teste de API utilizando Playwright/Test e [ServeRest](https://serverest.dev/)",
"version": "1.0.0",
"devDependencies": {
"@playwright/test": "^1.32.3",
"faker": "5.5.3",
"joi": "^17.4.2",
"serverest": "^2.26.11"
},
"scripts": {
"test:api": "npx playwright test --project 'api'",
"test:match": "npx playwright test --grep $MATCH",
"test:schema": "npx playwright test --project 'schema'",
"test:all": "npx playwright test ||:",
"test:docker": "npx playwright test",
"posttest:docker": "npm run reporter:html",
"reporter:html": "npx playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ltsuda/playwright-serverest.git"
},
"keywords": [
"playwright",
"javascript",
"serverest",
"automation",
"api",
"e2e"
],
"author": "Leonardo Tsuda",
"license": "ISC",
"bugs": {
"url": "https://github.com/ltsuda/playwright-serverest/issues"
},
"homepage": "https://github.com/ltsuda/playwright-serverest#readme"
}