home.e2e.js 312 B

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