-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "deckard",
"private": true,
"type": "module",
"scripts": {
"qa:browser:install": "playwright install chromium",
"qa:extension": "playwright test --config=playwright.extension.config.ts browser-bridge-extension.spec.ts",
"qa:extension:headed": "playwright test --config=playwright.extension.config.ts browser-bridge-extension.spec.ts --headed",
"qa:extension:real": "playwright test --config=playwright.extension.config.ts real-daemon.spec.ts",
"qa:extension:real:headed": "playwright test --config=playwright.extension.config.ts real-daemon.spec.ts --headed",
"qa:walletbeat": "node scripts/walletbeat-local-qa.mjs",
"qa:walletbeat:headed": "DECKARD_WALLETBEAT_HEADED=1 node scripts/walletbeat-local-qa.mjs",
"qa:walletbeat:signatures": "node scripts/walletbeat-signatures-qa.mjs",
"qa:walletbeat:signatures:headed": "DECKARD_WALLETBEAT_HEADED=1 node scripts/walletbeat-signatures-qa.mjs",
"qa:walletbeat:transactions": "node scripts/walletbeat-transactions-qa.mjs",
"qa:walletbeat:transactions:headed": "DECKARD_WALLETBEAT_HEADED=1 node scripts/walletbeat-transactions-qa.mjs",
"qa:walletbeat:local-chain": "node scripts/walletbeat-local-chain-qa.mjs",
"qa:walletbeat:local-chain:headed": "DECKARD_WALLETBEAT_HEADED=1 node scripts/walletbeat-local-chain-qa.mjs",
"qa:walletbeat:safety": "node scripts/walletbeat-safety-matrix-qa.mjs"
},
"devDependencies": {
"@playwright/test": "^1.61.0"
}
}