Skip to content

Commit c855fd8

Browse files
committed
fix(ui): only reveal additional groups from controlling rows.
1 parent ce28d31 commit c855fd8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/nuxt/components/VersionSelector.spec.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -641,12 +641,10 @@ describe('VersionSelector', () => {
641641
// Wait for versions to load
642642
await vi.waitFor(
643643
() => {
644-
// 0.9.x versions should NOT be under the 0.10.x group
645-
// They should be in a separate group
646644
const text = component.text()
647-
// The component should have separate groups for 0.10 and 0.9
648645
expect(text).toContain('0.10')
649-
expect(text).toContain('0.9')
646+
expect(text).toContain('0.10.0')
647+
expect(text).not.toContain('0.9')
650648
},
651649
{ timeout: 2000 },
652650
)

0 commit comments

Comments
 (0)