mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
Check that ts is exposed as a global on the typescript worker
This commit is contained in:
parent
892c164a7b
commit
8971aa0cb8
2 changed files with 17 additions and 4 deletions
|
|
@ -35,6 +35,9 @@ yaserver
|
|||
});
|
||||
|
||||
async function runTests() {
|
||||
// uncomment to shortcircuit and run a specific combo
|
||||
// await runTest('webpack', 'chromium'); return;
|
||||
|
||||
for (const type of ['amd', 'webpack']) {
|
||||
await runTest(type, 'chromium');
|
||||
await runTest(type, 'firefox');
|
||||
|
|
|
|||
|
|
@ -64,10 +64,6 @@ afterEach(async () => {
|
|||
});
|
||||
|
||||
describe(`Smoke Test '${TESTS_TYPE}'`, () => {
|
||||
it('`monacoAPI` is exposed as global', async () => {
|
||||
assert.strictEqual(await page.evaluate(`typeof monacoAPI`), 'object');
|
||||
});
|
||||
|
||||
/**
|
||||
* @param {string} text
|
||||
* @param {string} language
|
||||
|
|
@ -105,6 +101,10 @@ describe(`Smoke Test '${TESTS_TYPE}'`, () => {
|
|||
await page.evaluate(`window.ed.focus();`);
|
||||
}
|
||||
|
||||
it('`monacoAPI` is exposed as global', async () => {
|
||||
assert.strictEqual(await page.evaluate(`typeof monacoAPI`), 'object');
|
||||
});
|
||||
|
||||
it('should be able to create plaintext editor', async () => {
|
||||
await createEditor('hello world', 'plaintext');
|
||||
|
||||
|
|
@ -162,6 +162,16 @@ describe(`Smoke Test '${TESTS_TYPE}'`, () => {
|
|||
|
||||
// check that a suggestion item for `addEventListener` appears, which indicates that the language service is up and running
|
||||
await page.waitForSelector(`text=addEventListener`);
|
||||
|
||||
// find the TypeScript worker
|
||||
const tsWorker = page.workers().find((worker) => {
|
||||
const url = worker.url();
|
||||
return /ts\.worker\.js$/.test(url) || /workerMain.js#typescript$/.test(url);
|
||||
});
|
||||
assert.ok(!!tsWorker);
|
||||
|
||||
// check that the TypeScript worker exposes `ts` as a global
|
||||
assert.strictEqual(await tsWorker.evaluate(`typeof ts`), 'object');
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue