Skip to content

Commit 912b413

Browse files
authored
Merge pull request #2477 from microsoft/fix-enable-expo-hermes
Rename enableExpoHemes.ts and update export path
2 parents 802c65d + e55955a commit 912b413

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
File renamed without changes.

src/extension/commands/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export * from "./prebuild";
3232
export * from "./prebuildClean";
3333
export * from "./reopenQRCode";
3434
export * from "./enableHermes";
35-
export * from "./enableExpoHemes";
35+
export * from "./enableExpoHermes";
3636
export * from "./openExpoUpgradeHelper";
3737
export * from "./killPort";
3838
export * from "./setNewArch";

test/smoke/suites/helper/application.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ export class Application {
5151

5252
this.mainPage = await this.app.firstWindow();
5353
await this.mainPage.waitForSelector(`.${Element.vscodeWorkbenchClassName}`, {
54-
timeout: 10000,
54+
// CI occasionally needs longer to render the workbench; give it more headroom.
55+
timeout: 30000,
5556
});
5657

5758
await utilities.sleep(10000);

0 commit comments

Comments
 (0)