Skip to content

Commit

Permalink
fix(main-suite): fix test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
akhdrv committed Apr 19, 2023
1 parent 70b7698 commit 64bcfb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/main-suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"scripts": {
"integration:prepare": "./start.sh",
"integration:check": "NODE_OPTIONS=--experimental-vm-modules jest test",
"integration:all": "npm run integration:unchanged && npm run integration:degradation",
"integration:degradation": "perftool -o test-result/old.json --logLevel=verbose && SLOW=1 perftool -o test-result/new.json --logLevel=verbose && npm run integration:compare -o test-result/degradation.json",
"integration:unchanged": "perftool -o test-result/old.json --logLevel=verbose && perftool -o test-result/new.json --logLevel=verbose && npm run integration:compare -o test-result/unchanged.json",
"integration:all": "pnpm run integration:unchanged && pnpm run integration:degradation",
"integration:degradation": "perftool -o test-result/old.json --logLevel=verbose && SLOW=1 perftool -o test-result/new.json --logLevel=verbose && pnpm run integration:compare -o test-result/degradation.json",
"integration:unchanged": "perftool -o test-result/old.json --logLevel=verbose && perftool -o test-result/new.json --logLevel=verbose && pnpm run integration:compare -o test-result/unchanged.json",
"integration:compare": "perftool-compare test-result/new.json test-result/old.json --logLevel=verbose"
},
"private": true
Expand Down

0 comments on commit 64bcfb4

Please sign in to comment.