Skip to content

Commit 717c1d7

Browse files
committed
Enhance Docker CLI: Add support for 'boost' plugin with unit test configuration
1 parent 4ee203f commit 717c1d7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/cli/commands/docker.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,12 @@ const buildExecCmd = argv => {
397397
unitTestArgs.plugin = 'jetpack';
398398
unitTestArgs.envVars = [ 'JETPACK_TEST_WPCOMSH=1' ];
399399
break;
400+
case 'boost':
401+
unitTestArgs.plugin = 'jetpack-boost';
402+
403+
// Default to running only unit tests (excluding critical-css tests that require WorDBless)
404+
argv._.push( '--testsuite', 'unit' );
405+
break;
400406
case 'crm':
401407
unitTestArgs.plugin = 'zero-bs-crm';
402408
break;

0 commit comments

Comments
 (0)