From 69248a74081b2340a0128eb271dc1ec642990fd0 Mon Sep 17 00:00:00 2001 From: AlexanderLukin Date: Sat, 18 Feb 2017 14:38:54 +0300 Subject: [PATCH] Add missing dot --- public/docs/ts/latest/guide/testing.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/testing.jade b/public/docs/ts/latest/guide/testing.jade index 86b98bae3f..27871cb4be 100644 --- a/public/docs/ts/latest/guide/testing.jade +++ b/public/docs/ts/latest/guide/testing.jade @@ -1399,7 +1399,7 @@ a#stub-component The test setup should look familiar +makeExample('testing/ts/src/app/app.component.spec.ts', 'setup-stubs', 'src/app/app.component.spec.ts (Stub Setup)')(format='.') :marked - The `AppComponent` is the declared test subject + The `AppComponent` is the declared test subject. The setup extends the default testing module with one real component (`BannerComponent`) and several stubs. * `BannerComponent` is simple and harmless to use as is.