ipsos-components
Version:
Material Design components for Angular
17 lines (13 loc) • 433 B
text/typescript
import {browser} from 'protractor';
import {expectToExist} from '../util/index';
import {screenshot} from '../screenshot';
describe('list', () => {
beforeEach(() => browser.get('/list'));
it('should render a list container', () => {
expectToExist('mat-list');
screenshot();
});
it('should render list items inside the list container', () => {
expectToExist('mat-list mat-list-item');
});
});