Skip to content

Commit

Permalink
Fixed a test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomer-Eliahu committed Dec 2, 2024
1 parent 4e5a236 commit c10cb10
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ suite('Extension Test Suite', () => {
});

//This test will automatically test the entire logic of the extension even when that logic is updated
test('Whole Extension', ()=> {
test('Whole Extension', async ()=> {

run();
//We must await here or return run() to make sure run is fully tested (run to completion).
return run();

});

Expand Down

0 comments on commit c10cb10

Please sign in to comment.