From 0330a726a8136cc1a62926d82b2657b7418b75db Mon Sep 17 00:00:00 2001 From: joshgrant Date: Mon, 4 Jun 2018 11:10:03 -0400 Subject: [PATCH 1/2] updates --- app/viewDemo/viewDemo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!

From 47348e05c36e6fb2ade72f949a8a7e58dbe6f1ab Mon Sep 17 00:00:00 2001 From: joshgrant Date: Mon, 4 Jun 2018 11:15:35 -0400 Subject: [PATCH 2/2] updated tests --- e2e-tests/scenarios.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!/); }); });