File tree 4 files changed +17
-7
lines changed
4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -e
3
+ set -x
4
+ shopt -s globstar # to expand '**' into nested directories
5
+
6
+ for f in ./src/** /* .test.ts; do
7
+ # NODE_OPTIONS=--experimental-vm-modules npx jest $f;
8
+ # NODE_OPTIONS=--experimental-vm-modules NO_INSIGHT=true clinic flame -- node ./node_modules/jest-cli/bin/jest.js $f
9
+ echo NODE_OPTIONS=--experimental-vm-modules NO_INSIGHT=true clinic doctor --collect-only -- node ./node_modules/jest-cli/bin/jest.js $f
10
+ done
Original file line number Diff line number Diff line change
1
+ clinic doctor --collect-only -- node --perf-basic-prof --enable-source-maps --stack-trace-limit=1000 src/build/run.js $@
1
2
2
- clinic doctor -- node --perf-basic-prof --enable-source-maps --stack-trace-limit=1000 src/build/run.js $@
Original file line number Diff line number Diff line change 7
7
8
8
# ######
9
9
find /app > /tmp/app-files-list.txt
10
- NO_INSIGHT=true clinic doctor -- node /usr/local/bin/pnpm run test
11
- NO_INSIGHT=true clinic doctor -- node /usr/local/bin/pnpm run test:integration
12
- NO_INSIGHT=true clinic doctor -- node /usr/local/bin/pnpm run test:unit
13
- NO_INSIGHT=true clinic doctor -- node /usr/local/bin/pnpm run test:e2e
10
+ NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test
11
+ NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test:integration
12
+ NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test:unit
13
+ NO_INSIGHT=true clinic doctor --collect-only -- node /usr/local/bin/pnpm run test:e2e
14
14
15
15
# ######
16
16
NO_INSIGHT=true clinic flame -- node /usr/local/bin/pnpm run test
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ shopt -s globstar # to expand '**' into nested directories
5
5
6
6
for f in ./src/** /* .test.ts; do
7
7
# NODE_OPTIONS=--experimental-vm-modules npx jest $f;
8
- NODE_OPTIONS=--experimental-vm-modules NO_INSIGHT=true clinic flame -- node ./node_modules/jest-cli/bin/jest.js $f
9
- NODE_OPTIONS=--experimental-vm-modules NO_INSIGHT=true clinic doctor -- node ./node_modules/jest-cli/bin/jest.js $f
8
+ # NODE_OPTIONS=--experimental-vm-modules NO_INSIGHT=true clinic flame -- node ./node_modules/jest-cli/bin/jest.js $f
9
+ NODE_OPTIONS=--experimental-vm-modules NO_INSIGHT=true clinic doctor --collect-only -- node ./node_modules/jest-cli/bin/jest.js $f
10
10
done
You can’t perform that action at this time.
0 commit comments