Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
fix(solidity/extension): this was not callable
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmemorygrinder committed Dec 18, 2023
1 parent 63d159f commit 8c667d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion toolchains/solidity/extension/src/tests/test-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export class TestManager {
// Uncomment this when debugging is supported
//this.testController.createRunProfile("Debug tests", vscode.TestRunProfileKind.Run, (request, token) => this.runHandler(true, request, token))

vscode.workspace.onDidOpenTextDocument(this.parseTestsInDocument);
vscode.workspace.onDidOpenTextDocument((e) => {
this.parseTestsInDocument(e);
});

console.log("Test manager created");
}
Expand Down

0 comments on commit 8c667d7

Please sign in to comment.