From fb84f3bcfb9ab61a8b79a695069186e344391d29 Mon Sep 17 00:00:00 2001 From: Raymond Zhao <7199958+rzhao271@users.noreply.github.com> Date: Tue, 9 Jan 2024 09:16:42 -0800 Subject: [PATCH] test: skip flaky Settings editor smoke test (#202097) --- test/smoke/src/areas/preferences/preferences.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/smoke/src/areas/preferences/preferences.test.ts b/test/smoke/src/areas/preferences/preferences.test.ts index ed5726c3f20..14f618ef30a 100644 --- a/test/smoke/src/areas/preferences/preferences.test.ts +++ b/test/smoke/src/areas/preferences/preferences.test.ts @@ -48,7 +48,8 @@ export function setup(logger: Logger) { await app.code.waitForSetValue('.settings-editor .setting-item-contents .setting-item-control input', '4'); }); - it('turns off editor line numbers and verifies the live change', async function () { + // Skipping test due to it being flaky. + it.skip('turns off editor line numbers and verifies the live change', async function () { const app = this.app as Application; await app.workbench.editors.newUntitledFile();