From d900f5c075a41a7fdbc5d8ecb624b09b2f92d0ec Mon Sep 17 00:00:00 2001 From: Julie Ralph Date: Thu, 25 Feb 2016 14:27:32 -0800 Subject: [PATCH] chore(tests): lengthen timeout for templateUrl test This was flaking on Travis occasionally because the TestComponentBuilder is actually doing an XHR, and it was slow on the Edge browser. Closes #7293 --- modules/angular2/test/testing/testing_public_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/test/testing/testing_public_spec.ts b/modules/angular2/test/testing/testing_public_spec.ts index df630c2f24..e0493cae26 100644 --- a/modules/angular2/test/testing/testing_public_spec.ts +++ b/modules/angular2/test/testing/testing_public_spec.ts @@ -478,6 +478,6 @@ export function main() { expect(componentFixture.debugElement.nativeElement) .toHaveText('from external template\n'); }); - })); + }), 10000); // Long timeout here because this test makes an actual XHR, and is slow on Edge. }); }