mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
MacOS bugs fixes
This commit is contained in:
@@ -98,7 +98,7 @@ export function setup(context: TestContext) {
|
||||
];
|
||||
|
||||
context.log(`Starting server ${entryPoint} with args ${args.join(' ')}`);
|
||||
const server = spawn(entryPoint, args, { shell: true });
|
||||
const server = spawn(entryPoint, args, { shell: true, detached: true });
|
||||
|
||||
server.stderr.on('data', (data) => {
|
||||
context.error(`[Server Error] ${data.toString().trim()}`);
|
||||
@@ -134,9 +134,6 @@ export function setup(context: TestContext) {
|
||||
context.log('Waiting for the workbench to load');
|
||||
await page.waitForSelector('.monaco-workbench');
|
||||
|
||||
context.log('Verifying page title contains "Visual Studio Code"');
|
||||
assert.match(await page.title(), /Visual Studio Code/);
|
||||
|
||||
await test.run(page);
|
||||
|
||||
context.log('Closing browser');
|
||||
|
||||
Reference in New Issue
Block a user