Skip to content

Commit fe92d5b

Browse files
authored
Disable unreliable linting tests (#3923)
* Disable unreliable linting tests until we get time to refactor them. For #3914 (initial PR) * Fix hygiene issue
1 parent a093df5 commit fe92d5b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/test/linters/lint.test.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,14 @@ suite('Linting - General Tests', () => {
108108
let linterManager: ILinterManager;
109109
let configService: IConfigurationService;
110110

111-
suiteSetup(initialize);
111+
suiteSetup(async function () {
112+
// these tests are currently flakey, and need some refactoring to become reliable
113+
// See #3914
114+
// tslint:disable-next-line:no-invalid-this
115+
return this.skip();
116+
117+
await initialize();
118+
});
112119
setup(async () => {
113120
initializeDI();
114121
await initializeTest();

0 commit comments

Comments
 (0)