Skip to content

Commit 06c106f

Browse files
committed
format
Created using jj-spr 0.1.0
1 parent ae8e12a commit 06c106f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/framework-cli-e2e/test/backward-compatibility.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ async function checkLatestPublishedCLI(): Promise<void> {
7272
console.log("npm install output:", installResult.stdout);
7373

7474
// Find the installed CLI binary
75-
const { stdout: cliPath } = await execAsync(
76-
"npm bin --no-save",
77-
);
75+
const { stdout: cliPath } = await execAsync("npm bin --no-save");
7876
LATEST_CLI_PATH = path.join(cliPath.trim(), "moose-cli");
7977

8078
// Verify it works
81-
const { stdout: version } = await execAsync(`"${LATEST_CLI_PATH}" --version`);
79+
const { stdout: version } = await execAsync(
80+
`"${LATEST_CLI_PATH}" --version`,
81+
);
8282
console.log("Latest published CLI version:", version.trim());
8383
} catch (error: any) {
8484
console.error("Failed to install latest CLI from npm:", error.message);

0 commit comments

Comments
 (0)