初始化 antd-pro
This commit is contained in:
18
admin-web/src/e2e/topMenu.e2e.js
Normal file
18
admin-web/src/e2e/topMenu.e2e.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const BASE_URL = `http://localhost:${process.env.PORT || 8000}`;
|
||||
|
||||
describe('Homepage', () => {
|
||||
beforeAll(async () => {
|
||||
jest.setTimeout(1000000);
|
||||
});
|
||||
it('topmenu should have footer', async () => {
|
||||
const params = '/form/basic-form?navTheme=light&layout=topmenu';
|
||||
await page.goto(`${BASE_URL}${params}`);
|
||||
await page.waitForSelector('footer', {
|
||||
timeout: 2000,
|
||||
});
|
||||
const haveFooter = await page.evaluate(
|
||||
() => document.getElementsByTagName('footer').length > 0
|
||||
);
|
||||
expect(haveFooter).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user