From 74644d2b3e6b6dd1eeb6de6c2d4fd5d946998ff3 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Thu, 22 Sep 2016 09:48:22 -0700 Subject: [PATCH] docs(testing): use marked Jade filter (#2444) When the testing page is rendered the following warning is generated: ``` Transformers.markdown is deprecated, you must replace the :markdown jade filter, with :marked and install jstransformer-marked before you update to jade@2.0.0. ``` --- 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 54f61f369f..7889cb668b 100644 --- a/public/docs/ts/latest/guide/testing.jade +++ b/public/docs/ts/latest/guide/testing.jade @@ -518,7 +518,7 @@ a(href="#top").to-top Back to top ### The tests Jasmine runs this `beforeEach` before each test of which there are two +makeExample('testing/ts/app/banner.component.spec.ts', 'tests', 'app/banner.component.spec.ts (tests)')(format='.') -:markdown +:marked These tests ask the `DebugElement` for the native HTML element to satisfy their expectations. #detect-changes