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

This commit is contained in:
Alex Yang
2023-08-21 18:59:01 -05:00
committed by GitHub
parent bf00299bc7
commit 58184679ca
+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,
};