aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorJürgen Walter2013-12-04 17:24:50 +0100
committerPete Bacon Darwin2013-12-12 11:22:31 +0000
commitcf2a7614a411e34b54742fd1394b22f8a52104d7 (patch)
tree13e745644df66e316f3f96b0c76bb7d56ac42942 /docs/content/tutorial
parent9e538e7c311f42b71753920e1d3e903c69eb6e01 (diff)
downloadangular.js-cf2a7614a411e34b54742fd1394b22f8a52104d7.tar.bz2
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
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_07.ngdoc4
1 files changed, 2 insertions, 2 deletions
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.
<pre>
...
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');
});