-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 909 Bytes
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": "langflow-e2e",
"version": "1.0.0",
"description": "Langflow E2E regression test suite (Playwright)",
"private": true,
"scripts": {
"test": "npx playwright test",
"test:core": "npx playwright test tests/core/",
"test:extended": "npx playwright test tests/extended/",
"test:features": "npx playwright test tests/core/features/ tests/extended/features/",
"test:integrations": "npx playwright test tests/core/integrations/",
"test:unit": "npx playwright test tests/core/unit/",
"test:regression": "npx playwright test tests/core/regression/ tests/extended/regression/",
"test:grep": "npx playwright test --grep",
"report": "npx playwright show-report"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.5.0",
"playwright": "^1.57.0",
"typescript": "^5.4.5"
}
}