userLayout.e2e.js 997 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3
import puppeteer from 'puppeteer';
import RouterConfig from '../../config/router.config';

4 5
const BASE_URL = `http://localhost:${process.env.PORT || 8000}`;

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
6 7 8 9 10 11 12 13 14 15 16 17 18
function formatter(data) {
  return data
    .reduce((pre, item) => {
      pre.push(item.path);
      return pre;
    }, [])
    .filter(item => item);
}

describe('Homepage', () => {
  let browser;
  let page;

afc163's avatar
afc163 committed
19
  const testPage = path => async () => {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
20 21 22 23
    await page.goto(`${BASE_URL}${path}`);
    await page.waitForSelector('footer', {
      timeout: 2000,
    });
afc163's avatar
afc163 committed
24 25 26 27 28
    const haveFooter = await page.evaluate(
      () => document.getElementsByTagName('footer').length > 0
    );
    expect(haveFooter).toBeTruthy();
  };
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
29 30

  beforeAll(async () => {
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
31
    jest.setTimeout(1000000);
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
32 33 34
    browser = await puppeteer.launch({ args: ['--no-sandbox'] });
    page = await browser.newPage();
  });
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
35 36
  formatter(RouterConfig[0].routes).forEach(route => {
    fit(`test pages ${route}`, testPage(route));
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
37 38 39 40
  });

  afterAll(() => browser.close());
});