Skip to content

Commit ac06d73

Browse files
author
aehnh
committed
prettier
1 parent 76bf296 commit ac06d73

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

packages/tests-e2e/src/complete/utils/playground.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@ export default async function installPlaygroundDeps() {
104104
console.log(`[Global Setup] Playground built successfully in ${playgroundDir}.`);
105105
resolve();
106106
} else {
107-
reject(
108-
new Error(`[Global Setup] npm run build failed in ${playgroundDir} with code ${buildCode}`),
109-
);
107+
reject(new Error(`[Global Setup] npm run build failed in ${playgroundDir} with code ${buildCode}`));
110108
}
111109
});
112110
buildProcess.on('error', (err: Error) => {

packages/tests-e2e/src/connect/utils/Playground.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,7 @@ export default async function installPlaygroundDeps() {
8383
console.log(`[Global Setup] Playground built successfully in ${playgroundDir}.`);
8484
resolve();
8585
} else {
86-
reject(
87-
new Error(`[Global Setup] npm run build failed in ${playgroundDir} with code ${buildCode}`),
88-
);
86+
reject(new Error(`[Global Setup] npm run build failed in ${playgroundDir} with code ${buildCode}`));
8987
}
9088
});
9189
buildProcess.on('error', (err: Error) => {

0 commit comments

Comments
 (0)