We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c398c4 commit f25a834Copy full SHA for f25a834
2 files changed
scripts/post-build.ts
@@ -26,6 +26,7 @@ function main(): void {
26
27
// Create i18n mock
28
const i18nDir = path.join(BUILD_DIR, devtoolsFrontEndCorePath, 'i18n');
29
+ fs.mkdirSync(i18nDir, {recursive: true});
30
const localesFile = path.join(i18nDir, 'locales.js');
31
const localesContent = `
32
export const LOCALES = [
scripts/test.mjs
@@ -101,6 +101,7 @@ async function runTests(attempt) {
101
...process.env,
102
CHROME_DEVTOOLS_MCP_NO_USAGE_STATISTICS: true,
103
CHROME_DEVTOOLS_MCP_CRASH_ON_UNCAUGHT: true,
104
+ CHROME_DEVTOOLS_MCP_NO_UPDATE_CHECKS: true,
105
},
106
});
107
0 commit comments