Skip to content

Commit

Permalink
chore(build): increase timeout of the 5 most flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marclaval committed Nov 23, 2015
1 parent 30d35b5 commit 5806bab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function main() {

async.done();
});
}));
}), 10000);
}
});
}
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ export function main() {
expect(wasCalled).toBeTruthy();
async.done();
});
}), 500);
}), 10000);
});
}
6 changes: 3 additions & 3 deletions modules/angular2_material/test/button_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function main() {

async.done();
});
}), 1000);
}), 10000);

it('should disable the button', inject([AsyncTestCompleter], (async) => {
builder.createAsync(TestApp).then(fixture => {
Expand All @@ -68,7 +68,7 @@ export function main() {
expect(testAppComponent.clickCount).toBe(0);
async.done();
});
}), 1000);
}), 10000);
});

describe('a[md-button]', () => {
Expand Down Expand Up @@ -103,7 +103,7 @@ export function main() {
// No clear way to test this; see https://github.com/angular/angular/issues/3782
async.done();
}));
}), 1000);
}), 10000);
});
});
}
Expand Down

0 comments on commit 5806bab

Please sign in to comment.