importNightmarefrom'nightmare';describe('Login',()=>{letpage;beforeEach(()=>{page=Nightmare();page.goto('http://localhost:8000/#/user/login');});it('should login with failure',async()=>{awaitpage.type('#userName','mockuser').type('#password','wrong_password').click('button[type="submit"]').wait('.ant-alert-error')// should display error.end();});