smoke - properly skip tests (#141054)

This commit is contained in:
Benjamin Pasero 2022-01-21 08:55:59 +01:00
parent 319ee9a6af
commit 01a976f80c
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65

View file

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