From 32d0fb0a5e4a07e0c7afc4eff8683de5740cb88e Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 2 Apr 2021 14:50:31 -0700 Subject: [PATCH] refactor: add --runInBand to e2e test script --- ci/dev/test-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/dev/test-e2e.sh b/ci/dev/test-e2e.sh index 739f75c57..62a6fcf4a 100755 --- a/ci/dev/test-e2e.sh +++ b/ci/dev/test-e2e.sh @@ -15,7 +15,7 @@ main() { echo -e "\n" exit 1 fi - CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@" --config ./test/jest.e2e.config.ts + CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@" --config ./test/jest.e2e.config.ts --runInBand } main "$@"