From cf2a7614a411e34b54742fd1394b22f8a52104d7 Mon Sep 17 00:00:00 2001 From: Jürgen Walter Date: Wed, 4 Dec 2013 17:24:50 +0100 Subject: docs(tutorial/step-07): update path to pages in e2e scenarios The url paths in the tutorial are not in line with the actual tutorial code Closes #5264 --- docs/content/tutorial/step_07.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/content/tutorial/step_07.ngdoc') diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 110b383b..87c9f8d0 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -258,7 +258,7 @@ to various URLs and verify that the correct view was rendered.
...
it('should redirect index.html to index.html#/phones', function() {
- browser().navigateTo('../../app/index.html');
+ browser().navigateTo('app/index.html');
expect(browser().location().url()).toBe('/phones');
});
...
@@ -266,7 +266,7 @@ to various URLs and verify that the correct view was rendered.
describe('Phone detail view', function() {
beforeEach(function() {
- browser().navigateTo('../../app/index.html#/phones/nexus-s');
+ browser().navigateTo('app/index.html#/phones/nexus-s');
});
--
cgit v1.2.3