Skip to content

Commit 564a189

Browse files
committed
Fixed order to log dir first
1 parent bc910fb commit 564a189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/init/test/action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ const runTestInit = (options: TestInitCommand) =>
1717
set("testDirPrefix", genTestDirPrefix),
1818
tap(emptyTestDir),
1919
fillEmptyOptions,
20+
tap(logTestDir),
2021
tap(when(isDryRun, runTests(true))),
2122
tap(when(isHydRun, runTests(false))),
22-
tap(logTestDir),
2323
);
2424

2525
const isDryRun = <T extends { dryRun: boolean }>({ dryRun }: T) => dryRun;

0 commit comments

Comments
 (0)