Skip to content

Commit

Permalink
resolve remaining test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
montymxb committed Nov 17, 2023
1 parent 643ff90 commit 76f4875
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/langium/test/lsp/execute-command-handler.test.ts
Expand Up @@ -4,8 +4,9 @@
* terms of the MIT License, which is available in the project root.
******************************************************************************/

import { AbstractExecuteCommandHandler, createServicesForGrammarWithLSP, type ExecuteCommandAcceptor } from 'langium/lsp';
import { AbstractExecuteCommandHandler, type ExecuteCommandAcceptor } from '../../src/lsp/execute-command-handler.js';
import { describe, expect, test } from 'vitest';
import { createServicesForGrammarWithLSP } from '../../src/lsp/grammar-util.js';

describe('AbstractExecuteCommandHandler', () => {

Expand Down
2 changes: 1 addition & 1 deletion packages/langium/test/lsp/fuzzy-matcher.test.ts
Expand Up @@ -5,7 +5,7 @@
******************************************************************************/

import { describe, expect, test } from 'vitest';
import { DefaultFuzzyMatcher } from 'langium/lsp';
import { DefaultFuzzyMatcher } from '../../src/lsp/fuzzy-matcher.js';

const matcher = new DefaultFuzzyMatcher();

Expand Down
2 changes: 1 addition & 1 deletion packages/langium/test/lsp/signatureHelpProvider.test.ts
Expand Up @@ -6,7 +6,7 @@

import type { SignatureHelpOptions } from 'vscode-languageserver';
import { describe, expect, test } from 'vitest';
import { mergeSignatureHelpOptions } from 'langium/lsp';
import { mergeSignatureHelpOptions } from '../../src/lsp/signature-help-provider.js';

describe('MergeSignatureHelpOptions', () => {
test('Must merge SignatureHelpOptions triggerCharacters', async () => {
Expand Down

0 comments on commit 76f4875

Please sign in to comment.