We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c20c1cb commit 61bfe44Copy full SHA for 61bfe44
1 file changed
test/ui/suite/componentCommands.ts
@@ -65,7 +65,7 @@ export function testComponentCommands(path: string) {
65
const parsedDevfile = parse(devfile) as { [key: string]: any };
66
const expectedCommands = parsedDevfile.commands
67
.filter((command: { exec: any; }) => command.exec)
68
- .map((command: { id: unknown; }) => command.id);
+ .map((command: { id: any; }) => command.id);
69
70
//get component
71
const components = await section.getVisibleItems();
@@ -86,7 +86,7 @@ export function testComponentCommands(path: string) {
86
});
87
88
it('Command can be ran', async function () {
89
-
+ this.timeout(30_000);
90
// get first command's label and select it
91
const commandName = await commands[0].getLabel();
92
await commands[0].select();
0 commit comments