Skip to content

Commit

Permalink
smoke - properly skip tests (microsoft#141054)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Jan 21, 2022
1 parent 15021b2 commit c0e24d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smoke/src/areas/preferences/preferences.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c0e24d0

Please sign in to comment.