home.e2e.js 312 Bytes
Newer Older
偏右's avatar
偏右 committed
1 2 3 4 5 6 7 8 9
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>');
  });
});