Skip to content

Commit

Permalink
fix(wb): unbuffer arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu committed Oct 31, 2023
1 parent 039f0aa commit 0c23196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wb/src/commands/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export async function test(
}
const options = project.hasDockerfile
? {
startCommand: dockerScripts.stopAndStart(project),
startCommand: dockerScripts.stopAndStart(project, true),
}
: {};
process.exitCode = await runWithSpawn(scripts.testE2E(project, argv, options), project, argv, {
Expand Down Expand Up @@ -191,7 +191,7 @@ async function testOnDocker(
await runWithSpawn(`${scripts.buildDocker(project)}`, project, argv);
process.exitCode = await runWithSpawn(
`${prefix}${scripts.testE2E(project, argv, {
startCommand: dockerScripts.stopAndStart(project),
startCommand: dockerScripts.stopAndStart(project, true),
})}`,
project,
argv,
Expand Down

0 comments on commit 0c23196

Please sign in to comment.