(greaterThan)
| 11 | } |
| 12 | |
| 13 | export async function hasMinHeight(greaterThan) { |
| 14 | const data = await ptrElement(); |
| 15 | const height = data.getStyleProperty('min-height'); |
| 16 | const value = parseInt(height, 10); |
| 17 | |
| 18 | if (greaterThan === false) { |
| 19 | return t.expect(value).eql(0); |
| 20 | } |
| 21 | |
| 22 | return t.expect(value).gt(0); |
| 23 | } |
| 24 | |
| 25 | export async function isUnmounted() { |
| 26 | await t |
no outgoing calls
no test coverage detected