Skip to content

Commit

Permalink
code formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshwinThomasIBM authored and JoshwinThomasIBM committed Jan 23, 2025
1 parent 7ff5c60 commit 9a2e446
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/test/MavenTestDevModeActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ it('Open dasboard shows items - Maven', async () => {
section.expand();
await utils.delay(6000);
const menu = await section.getVisibleItems();
expect(menu).not.empty;
expect(menu).not.empty;
item = await section.findItem(constants.MAVEN_PROJECT) as DefaultTreeItem;
expect(item).not.undefined;
utils.clearMavenPluginCache(); // clearing the cache so initially it uses the latest verison of the plugins and initiate the testing
Expand Down Expand Up @@ -246,7 +246,7 @@ it('attach debugger for start with custom parameter event', async () => {
let attachStatus: Boolean = false;
try {
await utils.launchDashboardAction(item,constants.START_DASHBOARD_ACTION_WITH_PARAM, constants.START_DASHBOARD_MAC_ACTION_WITH_PARAM);
await utils.setCustomParameter("-DdebugPort=7777");
await utils.setCustomParameter("-DdebugPort=7777");
await utils.delay(30000);

isServerRunning = await utils.checkTerminalforServerState(constants.SERVER_START_STRING);
Expand Down
2 changes: 1 addition & 1 deletion src/test/utils/testUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function getMvnProjectPath(): string {
const input = new InputBox();
await input.click();
await input.setText(customParam);
await input.confirm();
await input.confirm();

}

Expand Down

0 comments on commit 9a2e446

Please sign in to comment.