We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21db422 commit 0b03dd1Copy full SHA for 0b03dd1
1 file changed
libs/driver-adapters/executor/script/testd-qc.sh
@@ -1,2 +1,12 @@
1
#!/usr/bin/env bash
2
-node "$(dirname "${BASH_SOURCE[0]}")/../dist/qc-test-runner.js"
+
3
+DEBUG_FLAGS=""
4
5
+if [ -n "$QC_RUNNER_INSPECT_BRK" ]; then
6
+ DEBUG_FLAGS="--inspect-brk --experimental-worker-inspection"
7
+elif [ -n "$QC_RUNNER_INSPECT" ]; then
8
+ DEBUG_FLAGS="--inspect --experimental-worker-inspection"
9
+fi
10
11
+# shellcheck disable=SC2086
12
+node $DEBUG_FLAGS "$(dirname "${BASH_SOURCE[0]}")/../dist/qc-test-runner.js"
0 commit comments