smoke - skip flaky one (#141054)

This commit is contained in:
Benjamin Pasero 2022-01-21 07:26:54 +01:00
parent be7ec0fed2
commit 5993199079
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

@ -13,7 +13,7 @@ export function setup(logger: Logger) {
// Shared before/after handling // Shared before/after handling
installAllHandlers(logger); installAllHandlers(logger);
it('turns off editor line numbers and verifies the live change', async function () { it.skip('turns off editor line numbers and verifies the live change', async function () { // https://github.com/microsoft/vscode/issues/141054
const app = this.app as Application; const app = this.app as Application;
await app.workbench.quickaccess.openFile(join(app.workspacePathOrFolder, 'app.js')); await app.workbench.quickaccess.openFile(join(app.workspacePathOrFolder, 'app.js'));
await app.code.waitForElements('.line-numbers', false, elements => !!elements.length); await app.code.waitForElements('.line-numbers', false, elements => !!elements.length);