From 2cabb75aedc49576fa6e26e6804758fb565584bb Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Wed, 18 Apr 2018 23:41:15 +0200 Subject: [PATCH] increase CSS test timeout --- test/smoke/src/areas/css/css.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/smoke/src/areas/css/css.test.ts b/test/smoke/src/areas/css/css.test.ts index 176e634bf6d..785de831bd6 100644 --- a/test/smoke/src/areas/css/css.test.ts +++ b/test/smoke/src/areas/css/css.test.ts @@ -29,10 +29,12 @@ export function setup() { }); it('verifies that warning becomes an error once setting changed', async function () { + // settings might take a while to update? + this.timeout(40000); + const app = this.app as Application; await app.workbench.settingsEditor.addUserSetting('css.lint.emptyRules', '"error"'); await app.workbench.quickopen.openFile('style.css'); - await app.workbench.editor.waitForTypeInEditor('style.css', '.foo{}'); await app.code.waitForElement(Problems.getSelectorInEditor(ProblemSeverity.ERROR));