Skip to content

Commit d0d90b4

Browse files
Feat(UI) apkt 2592 make wui ux by reown clickable (#760)
* Create config.yml (#759) Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update apps/demo/tests/pages/DemoPage.ts Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 9fd1b9f commit d0d90b4

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

.circleci /config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use the latest 2.1 version of CircleCI pipeline process engine.
2+
# See: https://circleci.com/docs/configuration-reference
3+
version: 2.1
4+
5+
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
6+
# See: https://circleci.com/docs/orb-intro/
7+
orbs:
8+
aws-cli: circleci/aws-cli@2.0.3
9+
10+
# Orchestrate jobs using workflows
11+
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
12+
jobs:
13+
example-job:
14+
docker:
15+
# replace with your preferred image
16+
- image: cimg/base:stable
17+
steps:
18+
- aws-cli/setup
19+
workflows:
20+
example-workflow:
21+
jobs:
22+
- example-job

apps/demo/tests/pages/DemoPage.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ export class DemoPage {
3131

3232
async openNetworksWithHook() {
3333
const hiddenButton = this.page.getByTestId('open-networks')
34-
// @ts-expect-error - click is not defined on the element
35-
await hiddenButton.evaluate(node => node.click())
34+
await hiddenButton.evaluate((node: HTMLElement) => node.click())
3635
await expect(this.page.getByText('Choose Network')).toBeVisible()
3736
}
3837

0 commit comments

Comments
 (0)