Skip to content

Commit 51f2dfd

Browse files
committed
test: update tests
1 parent 1017d44 commit 51f2dfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/tests/unit/range-slider.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ describe('RangeSlider', () => {
235235

236236
// Check if inputs are disabled
237237
const inputs = element.querySelectorAll('.range-slider-input')
238-
inputs.forEach(input => {
238+
for (const input of inputs) {
239239
expect(input.disabled).toBeTrue()
240-
})
240+
}
241241
})
242242

243243
it('should handle vertical orientation correctly', () => {

0 commit comments

Comments
 (0)