]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/login.e2e-spec.ts
29c9e9e10bbb24fdf8e6aabe4a82d5b4a70e38c0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / ui / login.e2e-spec.ts
1 import { LoginPageHelper } from './login.po';
2
3 describe('Login page', () => {
4 const login = new LoginPageHelper();
5
6 it('should login and navigate to dashboard page', () => {
7 login.navigateTo();
8 login.doLogin();
9 });
10
11 it('should logout when clicking the button', () => {
12 login.navigateTo();
13 login.doLogin();
14
15 login.doLogout();
16 });
17 });