Skip to content

Commit 61bfe44

Browse files
msivasubramaniaanvrubezhny
authored andcommitted
fixing time out issue
1 parent c20c1cb commit 61bfe44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/ui/suite/componentCommands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function testComponentCommands(path: string) {
6565
const parsedDevfile = parse(devfile) as { [key: string]: any };
6666
const expectedCommands = parsedDevfile.commands
6767
.filter((command: { exec: any; }) => command.exec)
68-
.map((command: { id: unknown; }) => command.id);
68+
.map((command: { id: any; }) => command.id);
6969

7070
//get component
7171
const components = await section.getVisibleItems();
@@ -86,7 +86,7 @@ export function testComponentCommands(path: string) {
8686
});
8787

8888
it('Command can be ran', async function () {
89-
89+
this.timeout(30_000);
9090
// get first command's label and select it
9191
const commandName = await commands[0].getLabel();
9292
await commands[0].select();

0 commit comments

Comments
 (0)