baseLayout.e2e.js 888 Bytes
Newer Older
1 2 3
import config from '../config/config';

const RouterConfig = config.routes;
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
4 5 6 7 8 9 10 11 12 13 14 15 16

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

function formatter(data) {
  return data
    .reduce((pre, item) => {
      pre.push(item.path);
      return pre;
    }, [])
    .filter(item => item);
}

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

  beforeAll(async () => {
    jest.setTimeout(1000000);
    await page.setCacheEnabled(false);
  });
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
32 33
  const routers = formatter(RouterConfig[1].routes);
  routers.forEach(route => {
34
    it(`test pages ${route}`, testPage(route));
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
35 36
  });
});