chore(build): increase timeout of the 5 most flaky tests

Closes #5410
This commit is contained in:
mlaval 2015-11-20 16:59:21 +01:00 committed by Marc Laval
parent 30d35b5046
commit 5806babb0b
3 changed files with 5 additions and 5 deletions

View File

@ -68,7 +68,7 @@ export function main() {
async.done(); async.done();
}); });
})); }), 10000);
} }
}); });
} }

View File

@ -147,6 +147,6 @@ export function main() {
expect(wasCalled).toBeTruthy(); expect(wasCalled).toBeTruthy();
async.done(); async.done();
}); });
}), 500); }), 10000);
}); });
} }

View File

@ -45,7 +45,7 @@ export function main() {
async.done(); async.done();
}); });
}), 1000); }), 10000);
it('should disable the button', inject([AsyncTestCompleter], (async) => { it('should disable the button', inject([AsyncTestCompleter], (async) => {
builder.createAsync(TestApp).then(fixture => { builder.createAsync(TestApp).then(fixture => {
@ -68,7 +68,7 @@ export function main() {
expect(testAppComponent.clickCount).toBe(0); expect(testAppComponent.clickCount).toBe(0);
async.done(); async.done();
}); });
}), 1000); }), 10000);
}); });
describe('a[md-button]', () => { describe('a[md-button]', () => {
@ -103,7 +103,7 @@ export function main() {
// No clear way to test this; see https://github.com/angular/angular/issues/3782 // No clear way to test this; see https://github.com/angular/angular/issues/3782
async.done(); async.done();
})); }));
}), 1000); }), 10000);
}); });
}); });
} }