We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 717c1d7 commit 82f5ea7Copy full SHA for 82f5ea7
tools/cli/commands/docker.js
@@ -400,8 +400,12 @@ const buildExecCmd = argv => {
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' );
+ if ( argv?.testsuite !== 'critical-css' ) {
+ argv._.push( '--testsuite', 'unit' );
405
+ } else {
406
+ argv._.push( '--testsuite', 'critical-css' );
407
+ argv._.push( '--bootstrap', 'tests/bootstrap-wordbless.php' );
408
+ }
409
break;
410
case 'crm':
411
unitTestArgs.plugin = 'zero-bs-crm';
0 commit comments