Skip to content

Commit 3ec50f1

Browse files
committed
Clean up the workspace
1 parent 3850042 commit 3ec50f1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

test/integrationTests/completionItemProvider.integration.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ suite(`${OmniSharpCompletionItemProvider.name}: Returns the completion items`, (
2323
await vscode.commands.executeCommand("vscode.open", fileUri);
2424
});
2525

26+
suiteTeardown(async () => {
27+
await testAssetWorkspace.cleanupWorkspace();
28+
});
29+
2630
test("Returns the completion items", async () => {
2731
let completionList = <vscode.CompletionList>(await vscode.commands.executeCommand("vscode.executeCompletionItemProvider", fileUri, new vscode.Position(8, 31), " "));
2832
expect(completionList.items).to.not.be.empty;

test/integrationTests/signatureHelp.integration.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import * as vscode from 'vscode';
77
import * as path from 'path';
88

9-
import { should, expect } from 'chai';
9+
import { expect } from 'chai';
1010
import { activateCSharpExtension } from './integrationHelpers';
1111
import testAssetWorkspace from './testAssets/testAssetWorkspace';
1212

@@ -18,7 +18,6 @@ suite(`SignatureHelp: ${testAssetWorkspace.description}`, function () {
1818
let fileUri: vscode.Uri;
1919

2020
suiteSetup(async function () {
21-
should();
2221
await testAssetWorkspace.restore();
2322
await activateCSharpExtension();
2423

0 commit comments

Comments
 (0)