UNPKG
ipsos-components
Version:
latest (5.0.0-rc.3)
5.0.0-rc.3
Material Design components for Angular
github.com/angular/material2
ipsos-components
/
e2e
/
index-e2e.spec.ts
11 lines
(9 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{browser}
from
'protractor'
;
describe
(
'hello, protractor'
,
() =>
{
describe
(
'index'
,
() =>
{ browser.
get
(
'/'
);
it
(
'should have a title'
,
async
() => {
expect
(
await
browser.
getTitle
()).
toBe
(
'Angular Material'
); }); }); });