|
|
|
@ -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(); |
|
|
|
}); |
|
|
|
|