UNPKG

ipsos-components

Version:

Material Design components for Angular

17 lines (13 loc) 463 B
import {browser} from 'protractor'; import {expectToExist} from '../util/index'; import {screenshot} from '../screenshot'; describe('grid-list', () => { beforeEach(() => browser.get('/grid-list')); it('should render a grid list container', () => { expectToExist('mat-grid-list'); screenshot(); }); it('should render list items inside the grid list container', () => { expectToExist('mat-grid-list mat-grid-tile'); }); });