Skip to content

Commit 4a18344

Browse files
committed
fix: update test with new max
1 parent e0874d3 commit 4a18344

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/nuxt/components/compare/PackageSelector.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,15 +222,15 @@ describe('PackageSelector', () => {
222222
})
223223

224224
describe('max prop', () => {
225-
it('defaults to 4 when not provided', async () => {
225+
it('defaults to 10 when not provided', async () => {
226226
const component = await mountSuspended(PackageSelector, {
227227
props: {
228228
modelValue: [],
229229
},
230230
})
231231

232232
// Should show max of 4 in hint
233-
expect(component.text()).toContain('4')
233+
expect(component.text()).toContain('1O')
234234
})
235235

236236
it('uses provided max value', async () => {

0 commit comments

Comments
 (0)