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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ const flags: BuildFlags = {
distribution: 'browser',
mode: 'development',
channel: 'canary',
coverage: false,
coverage: process.env.COVERAGE === 'true',
localBlockSuite: undefined,
};