From 94fb822937538fe500f6ef3ecd70f2d5e0c2cdde 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. --- 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 df630c2f2472..e0493cae2600 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. }); }