Skip to content

Commit 180e10c

Browse files
d3r3kkDonJayamanne
authored andcommitted
Skip prospector specific tests. (microsoft#3467)
Fixes microsoft#3464
1 parent 7781f8d commit 180e10c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/test/linters/lint.test.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,16 @@ suite('Linting - General Tests', () => {
196196
test('Enable Flake8 and test linter', async () => {
197197
await testEnablingDisablingOfLinter(Product.flake8, true);
198198
});
199-
test('Disable Prospector and test linter', async () => {
199+
test('Disable Prospector and test linter', async function () {
200+
// Skipping to solve #3464, tracked by issue #3466.
201+
// tslint:disable-next-line:no-invalid-this
202+
return this.skip();
200203
await testEnablingDisablingOfLinter(Product.prospector, false);
201204
});
202-
test('Enable Prospector and test linter', async () => {
205+
test('Enable Prospector and test linter', async function () {
206+
// Skipping to solve #3464, tracked by issue #3466.
207+
// tslint:disable-next-line:no-invalid-this
208+
return this.skip();
203209
await testEnablingDisablingOfLinter(Product.prospector, true);
204210
});
205211
test('Disable Pydocstyle and test linter', async () => {

0 commit comments

Comments
 (0)