From 6e38515402c5763a0b41e66da129e45b0be80208 Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Mon, 15 Jun 2015 07:17:54 +0200 Subject: [PATCH] fix(ShadowDom): fix emulation integration spec to test all 3 strategies fixes #2546 --- .../test/render/dom/shadow_dom_emulation_integration_spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/angular2/test/render/dom/shadow_dom_emulation_integration_spec.ts b/modules/angular2/test/render/dom/shadow_dom_emulation_integration_spec.ts index f2359bdede..b439f7363a 100644 --- a/modules/angular2/test/render/dom/shadow_dom_emulation_integration_spec.ts +++ b/modules/angular2/test/render/dom/shadow_dom_emulation_integration_spec.ts @@ -60,10 +60,9 @@ export function main() { } StringMapWrapper.forEach(strategies, (strategyBinding, name) => { - - beforeEachBindings(() => { return [strategyBinding, DomTestbed]; }); - describe(`${name} shadow dom strategy`, () => { + beforeEachBindings(() => { return [strategyBinding, DomTestbed]; }); + // GH-2095 - https://github.com/angular/angular/issues/2095 it('should support text nodes after content tags', inject([DomTestbed, AsyncTestCompleter], (tb, async) => {