diff --git a/e2e/login.e2e.js b/e2e/login.e2e.js deleted file mode 100644 index b991af44ba7a953df0786fd28d8e64a536870aaf..0000000000000000000000000000000000000000 --- a/e2e/login.e2e.js +++ /dev/null @@ -1,34 +0,0 @@ -const BASE_URL = `http://localhost:${process.env.PORT || 8000}`; - -describe('Login', () => { - beforeAll(async () => { - jest.setTimeout(1000000); - }); - - beforeEach(async () => { - await page.goto(`${BASE_URL}/user/login`, { waitUntil: 'networkidle2' }); - await page.evaluate(() => window.localStorage.setItem('antd-pro-authority', 'guest')); - }); - - it('should login with failure', async () => { - await page.waitForSelector('#userName', { - timeout: 2000, - }); - await page.type('#userName', 'mockuser'); - await page.type('#password', 'wrong_password'); - await page.click('button[type="submit"]'); - await page.waitForSelector('.ant-alert-error'); // should display error - }); - - it('should login successfully', async () => { - await page.waitForSelector('#userName', { - timeout: 2000, - }); - await page.type('#userName', 'admin'); - await page.type('#password', 'ant.design'); - await page.click('button[type="submit"]'); - await page.waitForSelector('.ant-layout-sider h1'); // should display error - const text = await page.evaluate(() => document.body.innerHTML); - expect(text).toContain('