diff --git a/app/viewDemo/viewDemo.html b/app/viewDemo/viewDemo.html index 165825b..e93cc6c 100644 --- a/app/viewDemo/viewDemo.html +++ b/app/viewDemo/viewDemo.html @@ -1,4 +1,4 @@

This is the partial for viewDemo.

- This demo is going to pass! + This demo is going to fail!

diff --git a/e2e-tests/scenarios.spec.js b/e2e-tests/scenarios.spec.js index a09919b..6a157be 100644 --- a/e2e-tests/scenarios.spec.js +++ b/e2e-tests/scenarios.spec.js @@ -49,7 +49,7 @@ describe('my app', function() { it('should render text that says the demo will pass', function() { expect(element.all(by.css('[ng-view] p')).get(1).getText()). - toMatch(/This demo is going to pass!/); + toMatch(/This demo is going to fail!/); }); });