mirror of
https://github.com/JHUAPL/PINE.git
synced 2026-01-09 20:47:59 -05:00
23 lines
1016 B
JSON
23 lines
1016 B
JSON
{
|
|
"name": "pine_test",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"cypress:open": "cypress open",
|
|
"cypress:record": "cypress run --record",
|
|
"cypress:run": "cypress run",
|
|
"mochawesome:cleanup": "rm -rf /nlp_webapp/results/reports/*",
|
|
"mochawesome:merge": "mochawesome-merge /nlp_webapp/results/reports/mochawesome*.json > /nlp_webapp/results/reports/report.json && rm -f /nlp_webapp/results/reports/mochawesome*.json",
|
|
"mochawesome:generate": "marge /nlp_webapp/results/reports/report.json --reportDir /nlp_webapp/results/reports/",
|
|
"mochawesome:summarize": "cypress/summarize.sh /nlp_webapp/results/reports/report.json",
|
|
"cypress:report": "npm run mochawesome:cleanup; npm run cypress:run; npm run mochawesome:merge; npm run mochawesome:generate; npm run mochawesome:summarize"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"cypress": "^8.2.0",
|
|
"mocha": "^9.0.3",
|
|
"mochawesome": "^6.2.2",
|
|
"mochawesome-merge": "^4.2.0",
|
|
"mochawesome-report-generator": "^5.2.0"
|
|
}
|
|
}
|