From 60565a5cf1dfa7e43cb18b448c7d61c5f765f0de Mon Sep 17 00:00:00 2001 From: Pavol Pitonak Date: Wed, 9 Nov 2016 17:42:57 +0100 Subject: [PATCH] docs(testing): configureTestModule -> configureTestingModule (#2767) --- public/docs/ts/latest/guide/testing.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/ts/latest/guide/testing.jade b/public/docs/ts/latest/guide/testing.jade index 15bd5f9baf..bbef6ee025 100644 --- a/public/docs/ts/latest/guide/testing.jade +++ b/public/docs/ts/latest/guide/testing.jade @@ -470,7 +470,7 @@ a(href="#top").to-top Back to top `TestBed.createComponent` creates an instance of `BannerComponent` to test and returns a [fixture](#component-fixture). `TestBed.createComponent` closes the current `TestBed` instance to further configuration. - You cannot call any more `TestBed` configuration methods, not `configureTestModule` + You cannot call any more `TestBed` configuration methods, not `configureTestingModule` nor any of the `override...` methods. The `TestBed` throws an error if you try. .alert.is-important @@ -874,7 +874,7 @@ a(href="#top").to-top Back to top ### _compileComponents_ closes configuration Calling `compileComponents` closes the current `TestBed` instance is further configuration. - You cannot call any more `TestBed` configuration methods, not `configureTestModule` + You cannot call any more `TestBed` configuration methods, not `configureTestingModule` nor any of the `override...` methods. The `TestBed` throws an error if you try. .alert.is-important @@ -1114,7 +1114,7 @@ a(href="#top").to-top Back to top :marked The `inject` function closes the current `TestBed` instance to further configuration. - You cannot call any more `TestBed` configuration methods, not `configureTestModule` + You cannot call any more `TestBed` configuration methods, not `configureTestingModule` nor any of the `override...` methods. The `TestBed` throws an error if you try. .alert.is-important