| 123456789 |
- import Nightmare from 'nightmare';
- describe('Homepage', () => {
- it('it should have logo text', async () => {
- const page = Nightmare().goto('http://localhost:8000');
- const text = await page.evaluate(() => document.body.innerHTML).end();
- expect(text).toContain('<h1>Ant Design Pro</h1>');
- });
- });
|