fd73dc051c
- Update to Webpack 5 - Use @effortlessmotion dynamic html and inline source plugins - Remove .clasp.json and use SAMPLE file - Consistent prettier formatting throughout - Update packages to latest versions Co-authored-by: Kevin Malakoff <kmalakoff@gmail.com>
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
// Use custom jest puppeteer preset as described here:
|
|
// jestjs.io/docs/puppeteer#custom-example-without-jest-puppeteer-preset
|
|
// This allows using stealth mode.
|
|
|
|
const { readFile } = require('fs').promises;
|
|
const os = require('os');
|
|
const path = require('path');
|
|
const puppeteer = require('puppeteer');
|
|
const NodeEnvironment = require('jest-environment-node').default;
|
|
|
|
const DIR = path.join(os.tmpdir(), 'jest_puppeteer_global_setup');
|
|
|
|
class PuppeteerEnvironment extends NodeEnvironment {
|
|
constructor(config) {
|
|
super(config);
|
|
}
|
|
|
|
async setup() {
|
|
await super.setup();
|
|
// get the wsEndpoint
|
|
const wsEndpoint = await readFile(path.join(DIR, 'wsEndpoint'), 'utf8');
|
|
if (!wsEndpoint) {
|
|
throw new Error('wsEndpoint not found');
|
|
}
|
|
|
|
// connect to puppeteer
|
|
this.global.__BROWSER_GLOBAL__ = await puppeteer.connect({
|
|
browserWSEndpoint: wsEndpoint,
|
|
});
|
|
}
|
|
|
|
async teardown() {
|
|
await super.teardown();
|
|
}
|
|
|
|
getVmContext() {
|
|
return super.getVmContext();
|
|
}
|
|
}
|
|
|
|
module.exports = PuppeteerEnvironment;
|