fix(cli): read environment variable (#3883)

(cherry picked from commit 58184679ca)
This commit is contained in:
Alex Yang
2023-08-21 18:59:01 -05:00
parent c2d901c245
commit 38a50b4fe8
+1 -1
View File
@@ -15,7 +15,7 @@ const flags: BuildFlags = {
distribution: 'browser',
mode: 'development',
channel: 'canary',
coverage: false,
coverage: process.env.COVERAGE === 'true',
localBlockSuite: undefined,
};