Skip to content

Commit

Permalink
Merge branch 'develop' into tgriesser/fix/21997-fix-invalid-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser authored Jun 1, 2022
2 parents 3692207 + 4108ca0 commit 67a65ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions packages/app/src/specs/InlineSpecList.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ describe('InlineSpecList', () => {
.should('exist')
.and('have.length', 7)

// overflow is required for the virtual list to work
// this test will fail if the overflow set by `useVirtualList`
// is overridden
cy.get('[data-cy="specs-list-container"]')
.should('have.css', 'overflow-y', 'auto')

cy.percySnapshot()
})

Expand Down
3 changes: 2 additions & 1 deletion packages/app/src/specs/InlineSpecListTree.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<div
v-bind="containerProps"
class="pt-8px specs-list-container overflow-hidden"
class="pt-8px specs-list-container"
data-cy="specs-list-container"
>
<ul
v-bind="wrapperProps"
Expand Down

0 comments on commit 67a65ac

Please sign in to comment.