(time)
| 23 | const path = require('path'); |
| 24 | |
| 25 | async function wait(time) { |
| 26 | return new Promise(resolve => { |
| 27 | setTimeout(resolve, time); |
| 28 | }); |
| 29 | } |
| 30 | |
| 31 | async function snapshot(browser, themePath) { |
| 32 | let themeName = path.basename(themePath, '.js'); |
no outgoing calls
no test coverage detected
searching dependent graphs…