mirror of https://github.com/vuejs/vue.git
19 lines
487 B
JavaScript
19 lines
487 B
JavaScript
beforeEach(() => {
|
|
jasmine.addMatchers({
|
|
// since classList may not be supported in all browsers
|
|
toHaveClass: () => {
|
|
return {
|
|
compare: (el, cls) => {
|
|
const pass = el.classList
|
|
? el.classList.contains(cls)
|
|
: el.getAttribute('class').split(/\s+/g).indexOf(cls) > -1
|
|
return {
|
|
pass,
|
|
message: `Expected element${pass ? ' ' : ' not '}to have class ${cls}`
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
})
|