mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 15:05:39 +01:00
amd progress
This commit is contained in:
parent
f420968fc9
commit
967982e245
20 changed files with 283 additions and 111 deletions
|
|
@ -42,13 +42,14 @@ async function runTests() {
|
|||
// uncomment to shortcircuit and run a specific combo
|
||||
// await runTest('webpack', 'chromium'); return;
|
||||
/** @type {PackagerKind[]} */
|
||||
const testTypes = ['amd', 'webpack', 'esbuild', 'vite'];
|
||||
//const testTypes = ['amd', 'webpack', 'esbuild', 'vite'];
|
||||
const testTypes = ['esbuild'];
|
||||
// TODO: add parcel! (this currently fails because parcel replaces process with {})
|
||||
|
||||
for (const type of testTypes) {
|
||||
await runTest(type, 'chromium');
|
||||
await runTest(type, 'firefox');
|
||||
await runTest(type, 'webkit');
|
||||
// await runTest(type, 'firefox');
|
||||
// await runTest(type, 'webkit');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -73,7 +74,7 @@ function runTest(packager, browser) {
|
|||
path.join(REPO_ROOT, 'node_modules/mocha/bin/mocha'),
|
||||
'test/smoke/*.test.js',
|
||||
'--no-delay',
|
||||
'--headless',
|
||||
//'--headless',
|
||||
'--timeout',
|
||||
'20000'
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue