mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-17 07:30:36 +03:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
const PuppeteerRollupEnvironment = require('./jest-puppeteer.env.rollup.js');
|
|
|
|
class CustomEnvironment extends PuppeteerRollupEnvironment {
|
|
async setup() {
|
|
await super.setup();
|
|
}
|
|
|
|
async teardown() {
|
|
await super.teardown();
|
|
}
|
|
}
|
|
|
|
module.exports = CustomEnvironment;
|