test(components): [slider] remove console.log (#18217)

This commit is contained in:
tangyongjie 2024-09-08 18:42:29 +08:00 committed by GitHub
parent 2d98ee4311
commit 14c8f752e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -450,7 +450,6 @@ describe('Slider', () => {
'each precision accuracy test: $input $output',
async (input, output) => {
await wrapper.find('input').setValue(input)
console.log(wrapper.find('input').element.value)
expect(wrapper.find('input').element.value).toEqual(`${output}`)
}