Skip to content

Commit 5f04abe

Browse files
committed
fix browser integration tests
1 parent d98e471 commit 5f04abe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/wasm/test/scripts/ensure-browser-bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { execSync } = require('child_process');
44

55
function ensureBrowserBundle() {
66
const browserPackageDir = path.resolve(__dirname, '../../../browser');
7-
if (!fs.existsSync(path.resolve(browserPackageDir, 'build/bundle.js'))) {
7+
if (!fs.existsSync(path.resolve(browserPackageDir, 'build/bundle/bundle.js'))) {
88
// eslint-disable-next-line no-console
99
console.warn('\nWARNING: Missing browser bundle. Bundle will be created before running wasm integration tests.');
1010
execSync(`pushd ${browserPackageDir} && yarn build:bundle && popd`);

0 commit comments

Comments
 (0)