From eaca5dbe2683d0eca21e6ac57c42cd57f4085397 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Sun, 19 Apr 2020 02:29:12 +0800 Subject: [PATCH] Correct `standalone test` environment variable (#8080) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bdf1f74250f8..13b65094937e 100644 --- a/package.json +++ b/package.json @@ -116,7 +116,7 @@ "prepare-release": "yarn && yarn build && yarn test:dist", "test": "jest", "test:dist": "cross-env NODE_ENV=production jest", - "test:dist-standalone": "cross-env NODE_ENV=production STANDALONE=1 jest tests/", + "test:dist-standalone": "cross-env NODE_ENV=production TEST_STANDALONE=1 jest tests/", "test:integration": "jest tests_integration", "perf:repeat": "yarn && yarn build && cross-env NODE_ENV=production node ./dist/bin-prettier.js --debug-repeat ${PERF_REPEAT:-1000} --loglevel debug ${PERF_FILE:-./index.js} > /dev/null", "perf:repeat-inspect": "yarn && yarn build && cross-env NODE_ENV=production node --inspect-brk ./dist/bin-prettier.js --debug-repeat ${PERF_REPEAT:-1000} --loglevel debug ${PERF_FILE:-./index.js} > /dev/null",