Missing semi-colons
This commit is contained in:
parent
07951a6a80
commit
f46a6d728f
@ -19,7 +19,7 @@ describe('my app', function() {
|
|||||||
|
|
||||||
it('should render view1 when user navigates to /view1', function() {
|
it('should render view1 when user navigates to /view1', function() {
|
||||||
expect(element('ng\\:view p:first').text()).
|
expect(element('ng\\:view p:first').text()).
|
||||||
toMatch(/partial for view 1/)
|
toMatch(/partial for view 1/);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
@ -34,7 +34,7 @@ describe('my app', function() {
|
|||||||
|
|
||||||
it('should render view1 when user navigates to /view2', function() {
|
it('should render view1 when user navigates to /view2', function() {
|
||||||
expect(element('ng\\:view p:first').text()).
|
expect(element('ng\\:view p:first').text()).
|
||||||
toMatch(/partial for view 2/)
|
toMatch(/partial for view 2/);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user