Skip to content

Commit

Permalink
fix(tests/e2e/sidebar.spec.ts): OnRampModal test id not being passe…
Browse files Browse the repository at this point in the history
…d to modal
  • Loading branch information
hassnian committed Nov 21, 2024
1 parent 121ee59 commit b69af34
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libs/ui/src/components/NeoModal/NeoModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
:destroy-on-hide="destroyOnHide"
:can-cancel="canCancel"
:full-screen="fullScreen"
:data-testid="dataTestid"
:content-class="[
...contentClassName,
noShadow ? 'no-shadow' : '',
Expand Down Expand Up @@ -50,6 +51,7 @@ const props = withDefaults(
mobileBreakpoint?: string
appendToBody?: boolean
noOverlap?: boolean
dataTestid?: string
}>(),
{
destroyOnHide: true,
Expand All @@ -62,6 +64,7 @@ const props = withDefaults(
maxHeight: '80vh',
mobileBreakpoint: '768px',
appendToBody: true,
dataTestid: undefined,
},
)
Expand Down

0 comments on commit b69af34

Please sign in to comment.