-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.js
25 lines (22 loc) · 826 Bytes
/
setup.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
const chalk = require('chalk')
const puppeteer = require('puppeteer')
const fs = require('fs')
const mkdirp = require('mkdirp')
const os = require('os')
const path = require('path')
const DIR = path.join(os.tmpdir(), 'jest_puppeteer_global_setup')
module.exports = async function() {
console.log(chalk.green('Setup Puppeteer'))
const browser = await puppeteer.launch({ headless: false })
// This global is not available inside tests but only in global teardown
global.__BROWSER_GLOBAL__ = browser
// Instead, we expose the connection details via file system to be used in tests
mkdirp.sync(DIR)
fs.writeFileSync(path.join(DIR, 'wsEndpoint'), browser.wsEndpoint())
// ------
let hmm = [
'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
]
page = await browser.newPage()
await page.goto(hmm[0]);
}