mirror of
https://gh.wpcy.net/https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-05-03 14:04:08 +08:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
import {AppPage} from './app.po';
|
|
|
|
describe('SuiteCRM App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should display login form', () => {
|
|
page.navigateTo();
|
|
expect(page.getLoginForm()).toEqual('login');
|
|
});
|
|
});
|