1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-24 14:13:06 +02:00

test: add test for shown message

This commit is contained in:
George Sotiropoulos
2022-11-08 10:32:11 +02:00
committed by GeoSot
parent 2d56711f48
commit b5bed16fdf

View File

@@ -87,7 +87,7 @@ describe('Data', () => {
Data.set(div, TEST_KEY, data)
Data.set(div, UNKNOWN_KEY, copy)
expect(console.error).toHaveBeenCalled()
expect(console.error).toHaveBeenCalledWith(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${TEST_KEY}.`)
expect(Data.get(div, UNKNOWN_KEY)).toBeNull()
})
@@ -99,7 +99,7 @@ describe('Data', () => {
Data.set(div, TEST_KEY, data)
Data.set(div, TEST_KEY, data)
expect(console.error).toHaveBeenCalled()
expect(console.error).toHaveBeenCalledWith(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${TEST_KEY}.`)
expect(Data.get(div, TEST_KEY)).toEqual(data)
})
/* eslint-enable no-console */