-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathto-be-visible.js
49 lines (44 loc) · 1.33 KB
/
to-be-visible.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import {matcherHint, printReceived} from 'jest-matcher-utils'
import {checkHtmlElement} from './utils'
function isStyleVisible(element) {
const {getComputedStyle} = element.ownerDocument.defaultView
const {display, visibility, opacity} = getComputedStyle(element)
return (
display !== 'none' &&
visibility !== 'hidden' &&
visibility !== 'collapse' &&
opacity !== '0' &&
opacity !== 0
)
}
function isAttributeVisible(element, previousElement) {
return (
!element.hasAttribute('hidden') &&
(element.nodeName === 'DETAILS' && previousElement.nodeName !== 'SUMMARY'
? element.hasAttribute('open')
: true)
)
}
function isElementVisible(element, previousElement) {
return (
isStyleVisible(element) &&
isAttributeVisible(element, previousElement) &&
(!element.parentElement || isElementVisible(element.parentElement, element))
)
}
export function toBeVisible(element) {
checkHtmlElement(element, toBeVisible, this)
const isVisible = isElementVisible(element)
return {
pass: isVisible,
message: () => {
const is = isVisible ? 'is' : 'is not'
return [
matcherHint(`${this.isNot ? '.not' : ''}.toBeVisible`, 'element', ''),
'',
`Received element ${is} visible:`,
` ${printReceived(element.cloneNode(false))}`,
].join('\n')
},
}
}