We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d98e471 commit 5f04abeCopy full SHA for 5f04abe
packages/wasm/test/scripts/ensure-browser-bundle.js
@@ -4,7 +4,7 @@ const { execSync } = require('child_process');
4
5
function ensureBrowserBundle() {
6
const browserPackageDir = path.resolve(__dirname, '../../../browser');
7
- if (!fs.existsSync(path.resolve(browserPackageDir, 'build/bundle.js'))) {
+ if (!fs.existsSync(path.resolve(browserPackageDir, 'build/bundle/bundle.js'))) {
8
// eslint-disable-next-line no-console
9
console.warn('\nWARNING: Missing browser bundle. Bundle will be created before running wasm integration tests.');
10
execSync(`pushd ${browserPackageDir} && yarn build:bundle && popd`);
0 commit comments