-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 910 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "examples-node-test-reporter",
"version": "0.0.0",
"description": "",
"private": true,
"scripts": {
"test": "node --test --test-reporter @currents/node-test-reporter --test-reporter-destination=./report.xml **.test.mjs || true && echo '✅ Script executed successfully'",
"test-2": "node --test --test-reporter @currents/node-test-reporter --test-reporter-destination=./report.xml **.test.mjs || true && echo '✅ Script executed successfully'",
"convert": "npx currents convert --input-format=junit --input-file=./report.xml --framework=node",
"report": "CURRENTS_API_URL=http://localhost:1234 currents --project-id=$CURRENTS_PROJECT_ID --key=$CURRENTS_RECORD_KEY",
"build": "echo \"No build specified\" && exit 0"
},
"devDependencies": {
"@currents/cmd": "*",
"@currents/node-test-reporter": "*"
},
"keywords": [],
"author": "",
"license": "ISC"
}