chore(saucelabs): MdButton tests time out

Closes #4248
This commit is contained in:
Marc Laval 2015-09-18 14:54:01 +02:00
parent ea15d6646b
commit 29f75c3c63

View File

@ -54,7 +54,7 @@ export function main() {
async.done(); async.done();
}); });
})); }), 1000);
it('should disable the button', inject([AsyncTestCompleter], (async) => { it('should disable the button', inject([AsyncTestCompleter], (async) => {
builder.createAsync(TestApp).then(rootTestComponent => { builder.createAsync(TestApp).then(rootTestComponent => {
@ -78,7 +78,7 @@ export function main() {
expect(testAppComponent.clickCount).toBe(0); expect(testAppComponent.clickCount).toBe(0);
async.done(); async.done();
}); });
})); }), 1000);
}); });
describe('a[md-button]', () => { describe('a[md-button]', () => {
@ -113,7 +113,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);
}); });
}); });
} }