From 86722fd2766327006a2c581a871332ccc55d8970 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Fri, 24 Mar 2017 16:33:29 +0100 Subject: [PATCH] fix(@angular/cli): update e2e config in 1.0 update guide Close #5635 --- docs/documentation/stories/1.0-update.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/documentation/stories/1.0-update.md b/docs/documentation/stories/1.0-update.md index e0639504c7c3..849a83734ac2 100644 --- a/docs/documentation/stories/1.0-update.md +++ b/docs/documentation/stories/1.0-update.md @@ -296,7 +296,7 @@ Then update `protractor.conf.js` to use the e2e config as well: ``` beforeLaunch: function() { require('ts-node').register({ - project: 'e2e' + project: 'e2e/tsconfig.e2e.json' }); }, ``` @@ -444,7 +444,7 @@ Update `beforeLaunch` as described in [One tsconfig per app](#one-tsconfig-per-a ``` beforeLaunch: function() { require('ts-node').register({ - project: 'e2e' + project: 'e2e/tsconfig.e2e.json' }); }, ```