Skip to content

Commit c0e24d0

Browse files
committed
smoke - properly skip tests (microsoft#141054)
1 parent 15021b2 commit c0e24d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

smoke/src/areas/preferences/preferences.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import { Application, ActivityBarPosition, Logger } from '../../../../automation
88
import { installAllHandlers } from '../../utils';
99

1010
export function setup(logger: Logger) {
11-
describe('Preferences', () => {
11+
describe.skip('Preferences', () => { // TODO@sandy081 TODO@roblourens https://github.com/microsoft/vscode/issues/141054
1212

1313
// Shared before/after handling
1414
installAllHandlers(logger);
1515

16-
it.skip('turns off editor line numbers and verifies the live change', async function () { // https://github.com/microsoft/vscode/issues/141054
16+
it('turns off editor line numbers and verifies the live change', async function () {
1717
const app = this.app as Application;
1818
await app.workbench.quickaccess.openFile(join(app.workspacePathOrFolder, 'app.js'));
1919
await app.code.waitForElements('.line-numbers', false, elements => !!elements.length);

0 commit comments

Comments
 (0)