|
|
@@ -3,6 +3,9 @@ import puppeteer from 'puppeteer';
|
|
|
const BASE_URL = `http://localhost:${process.env.PORT || 8000}`;
|
|
|
|
|
|
describe('Homepage', () => {
|
|
|
+ beforeAll(async () => {
|
|
|
+ jest.setTimeout(1000000);
|
|
|
+ });
|
|
|
it('it should have logo text', async () => {
|
|
|
const browser = await puppeteer.launch({ args: ['--no-sandbox'] });
|
|
|
const page = await browser.newPage();
|