Browse Source

Fix #logo does not exist for bugs

pull/6724/head
陈帅 7 years ago
parent
commit
49b674b6cf
  1. 6
      src/e2e/home.e2e.js

6
src/e2e/home.e2e.js

@ -10,9 +10,9 @@ describe('Homepage', () => {
const browser = await puppeteer.launch({ args: ['--no-sandbox'] });
const page = await browser.newPage();
await page.goto(BASE_URL, { waitUntil: 'networkidle2' });
await page.waitForSelector('#logo h1');
const text = await page.evaluate(() => document.body.innerHTML);
expect(text).toContain('<h1>Ant Design Pro</h1>');
const text = await page.evaluate(() => document.getElementsByTagName('h1')[0].innerText);
expect(text).toContain('Ant Design Pro');
await page.close();
browser.close();
});

Loading…
Cancel
Save