Skip to content

Commit

Permalink
Revert "Added delays so that the cron jobs will be passed"
Browse files Browse the repository at this point in the history
This reverts commit d7035e2.
  • Loading branch information
gilbysunil14 committed Nov 12, 2024
1 parent d7035e2 commit cedb53f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/test/GradleSingleModJakartaLSTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ describe('LSP4Jakarta LS test for snippet test', () => {
}

editor.typeText("rest");
await utils.delay(6000);

//open the assistant
const assist = await editor.toggleContentAssist(true);
Expand All @@ -27,13 +26,11 @@ describe('LSP4Jakarta LS test for snippet test', () => {
// to select an item use
await assist.select('rest_class')
}
await utils.delay(6000);

// close the assistant
await editor.toggleContentAssist(false);

const insertedCode = await editor.getText();
await utils.delay(6000);
assert(insertedCode.includes('public String methodname() {'), 'Snippet rest_class was not inserted correctly.');

await editor.clearText();
Expand Down

0 comments on commit cedb53f

Please sign in to comment.