Skip to content

Commit

Permalink
disable misbehaving test
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-grant-work committed Jan 28, 2022
1 parent 160276c commit 52da73d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/api-tests/src/typescript.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,8 @@ DIV {
assert.equal(activeEditor.getControl().getModel().getWordAtPosition({ lineNumber, column }).word, 'Container');
});

it('run reference code lens', async function () {
// TODO As of Jan. 28, 2022, this test was failing / timing out frequently for reasons unknown.
it.skip('run reference code lens', async function () {
this.timeout(300_000); // 5 min (give time to `tsserver` to initialize and then respond to make this test pass.)
// @ts-ignore
const globalValue = preferences.inspect('javascript.referencesCodeLens.enabled').globalValue;
Expand Down

0 comments on commit 52da73d

Please sign in to comment.