-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 881 Bytes
/
package.json
File metadata and controls
15 lines (15 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"scripts": {
"test": "npx mocha test.mjs",
"test-junit": "npx mocha --reporter node_modules/mocha-junit-reporter --reporter-options jenkinsMode=1,outputs=1,mochaFile=results/mocha-test-results.xml test.mjs",
"test-report": "npx testmo automation:run:submit --instance '$TESTMO_URL' --project-id 1 --name 'Sauce Labs test run for \"$BROWSER\"' --config '$BROWSER' --source 'frontend' --results results/*.xml",
"test-ci": "npx testmo automation:run:submit --instance '$TESTMO_URL' --project-id 1 --name 'Sauce Labs test run for \"$BROWSER\"' --config '$BROWSER' --source 'frontend' --results results/*.xml -- npm run test-junit"
},
"devDependencies": {
"@testmo/testmo-cli": "^1.4.4",
"chai": "^4.5.0",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.2.1",
"selenium-webdriver": "^4.29.0"
}
}