fix(core): update

This commit is contained in:
2021-01-08 21:16:25 +00:00
parent 1b72af4702
commit ef55253b8e
10 changed files with 112 additions and 41 deletions

View File

@ -1,9 +1,9 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartpuppeteer from '../ts/index';
tap.test('first test', async tools => {
tap.test('first test', async (tools) => {
const headlessBrowser = await smartpuppeteer.getEnvAwareBrowserInstance({
forceNoSandbox: true
forceNoSandbox: true,
});
await headlessBrowser.close();
});