Skip to content

Commit 039e873

Browse files
committed
chore: Fix prettier formatting
1 parent 1edca18 commit 039e873

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

dev-packages/bundler-tests/tests/bundling.test.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,14 +148,7 @@ describe('__VITE_SPOTLIGHT_ENV__ rollup replacement', () => {
148148
// ESM bundles should have import.meta.env access, CJS should have undefined
149149

150150
function readSdkFile(packageName: string, format: 'esm' | 'cjs'): string {
151-
const sdkPath = path.join(
152-
rootDir(),
153-
'packages',
154-
packageName,
155-
'build',
156-
format,
157-
'sdk.js',
158-
);
151+
const sdkPath = path.join(rootDir(), 'packages', packageName, 'build', format, 'sdk.js');
159152
if (!fs.existsSync(sdkPath)) {
160153
throw new Error(`SDK file not found: ${sdkPath}. Make sure to run yarn build:dev first.`);
161154
}

0 commit comments

Comments
 (0)