Skip to content

Commit bfc2a7f

Browse files
test(apidom-ls): fix flaky tests (#5062)
1 parent c892835 commit bfc2a7f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

packages/apidom-ls/test/hover-provider.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,8 @@ describe('apidom-ls-hover-provider', function () {
438438
logLevel,
439439
};
440440

441-
// TODO: Flaky test.
442-
// eslint-disable-next-line mocha/no-skipped-tests
443-
xit('test hover ref provider', async function () {
441+
it('test hover ref provider', async function () {
442+
this.timeout(10000);
444443
let languageService: LanguageService = getLanguageService(contextAsyncRef);
445444

446445
try {
@@ -468,9 +467,8 @@ describe('apidom-ls-hover-provider', function () {
468467
}
469468
});
470469

471-
// TODO: Flaky test.
472-
// eslint-disable-next-line mocha/no-skipped-tests
473-
xit('test hover full provider', async function () {
470+
it('test hover full provider', async function () {
471+
this.timeout(10000);
474472
const languageService: LanguageService = getLanguageService(contextFull);
475473

476474
try {

0 commit comments

Comments
 (0)