mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
Add smoketest for esbuild packaging
This commit is contained in:
parent
c0b99e4785
commit
208f9218f9
8 changed files with 98 additions and 3 deletions
|
|
@ -16,7 +16,9 @@ const TESTS_TYPE = process.env.TESTS_TYPE || 'amd';
|
|||
const URL =
|
||||
TESTS_TYPE === 'amd'
|
||||
? `http://127.0.0.1:${PORT}/test/smoke/amd.html`
|
||||
: `http://127.0.0.1:${PORT}/test/smoke/webpack/webpack.html`;
|
||||
: TESTS_TYPE === 'webpack'
|
||||
? `http://127.0.0.1:${PORT}/test/smoke/webpack/webpack.html`
|
||||
: `http://127.0.0.1:${PORT}/test/smoke/esbuild/esbuild.html`;
|
||||
|
||||
suite(`Smoke Test '${TESTS_TYPE}' on '${browserType}'`, () => {
|
||||
/** @type {playwright.Browser} */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue