mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
11 lines
270 B
JavaScript
11 lines
270 B
JavaScript
|
import wd from 'wd'
|
||
|
|
||
|
export default async function (appPort, pathname) {
|
||
|
const url = `http://localhost:${appPort}${pathname}`
|
||
|
|
||
|
const browser = wd.promiseChainRemote('http://localhost:9515/')
|
||
|
await browser.init({browserName: 'chrome'}).get(url)
|
||
|
|
||
|
return browser
|
||
|
}
|