| 1 | export const screenshot = async page => { |
| 2 | await page.addStyleTag({ content: '* { color: transparent !important; }' }); |
| 3 | return page.screenshot(); |
| 4 | }; |
| 5 | |
| 6 | /* istanbul ignore next */ |
| 7 | export const scroll = async (page, selector, amount) => { |
no outgoing calls
no test coverage detected