Skip to content

Commit dd823a2

Browse files
authored
Merge branch 'main' into chore/use-custom-storage-service-class
2 parents f476978 + 8e88e60 commit dd823a2

4 files changed

Lines changed: 43 additions & 30 deletions

File tree

e2e/src/pages/HelloExtensionPage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ export class HelloExtensionPage extends SocketNavigationPage {
5858
}
5959

6060
// Verify iframe loads
61-
await expect(this.page.locator('iframe')).toBeVisible({ timeout: 15000 });
61+
await expect(this.page.locator('iframe[name="portal"]')).toBeVisible({ timeout: 15000 });
6262
this.logger.info('Extension iframe loaded');
6363

6464
// Verify iframe content
65-
const iframe: FrameLocator = this.page.frameLocator('iframe');
65+
const iframe: FrameLocator = this.page.frameLocator('iframe[name="portal"]');
6666

6767
// Check for "Foundry Functions Demo" text
6868
await expect(iframe.getByText(/Foundry Functions Demo/i)).toBeVisible({ timeout: 10000 });

ui/extensions/hello/package-lock.json

Lines changed: 33 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/extensions/hello/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@
7171
"lodash": "4.17.23",
7272
"svgo": "2.8.1",
7373
"minimatch@3": "3.1.4",
74-
"minimatch@9": "9.0.9"
74+
"minimatch@9": "9.0.9",
75+
"picomatch@2": "2.3.2",
76+
"picomatch@4": "4.0.4",
77+
"yaml@1": "1.10.3",
78+
"brace-expansion@2": "2.0.3"
7579
}
7680
}

ui/extensions/hello/src/dist/app.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3857,6 +3857,9 @@ class Navigation {
38573857
},
38583858
});
38593859
}
3860+
/**
3861+
* @deprecated Use navigateTo directly
3862+
*/
38603863
async onClick(event, defaultTarget = '_self', defaultType = 'falcon') {
38613864
if (!(event instanceof Event)) {
38623865
throw Error('"event" property should be subclass of Event');

0 commit comments

Comments
 (0)