From 39eb34739a9cd5bbff930dd2c12c5199ee108f94 Mon Sep 17 00:00:00 2001 From: Julie Ralph Date: Tue, 26 Apr 2016 10:05:42 -0700 Subject: [PATCH] chore(changelog): fix changelog with messages about testing zone deps Closes #8253 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c4f7d865f..784f54a875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,11 @@ * `injectAsync` is now deprecated. Instead, use the `async` function to wrap any asynchronous tests. + +You will also need to add the dependency +`'node_modules/zone.js/dist/async-test.js'` +as a served file in your Karma or other test configuration. + Before: ``` it('should wait for returned promises', injectAsync([FancyService], (service) => { @@ -72,6 +77,10 @@ After: fakeAsync(inject([...], (...) => {...})) ``` +You will also need to add the dependency +`'node_modules/zone.js/dist/fake-async-test.js'` +as a served file in your Karma or other test configuration. + * - pipes now take a variable number of arguments, and not an array that contains all arguments.