From 7afcfbced7318c43f43440934c53109bddac219b Mon Sep 17 00:00:00 2001 From: Pavol Pitonak Date: Mon, 7 Nov 2016 15:43:59 +0100 Subject: [PATCH] docs(testing) configureTestModule -> configureTestingModule --- 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