feat(benchpress): rewritten implementation

Limitations:
- cloud reporter is not yet supported any more
This commit is contained in:
Tobias Bosch
2015-02-11 10:13:49 -08:00
parent 44845839a6
commit f6284f2a55
78 changed files with 2666 additions and 1018 deletions

View File

@ -17,7 +17,7 @@ describe('ng1.x largetable benchmark', function () {
'ngBindFilter',
'interpolationFilter'
].forEach(function(benchmarkType) {
it('should log the stats with: ' + benchmarkType, function() {
it('should log the stats with: ' + benchmarkType, function(done) {
perfUtil.runClickBenchmark({
url: URL,
buttons: ['#destroyDom', '#createDom'],
@ -34,7 +34,7 @@ describe('ng1.x largetable benchmark', function () {
name: 'benchmarkType',
value: benchmarkType
}]
});
}).then(done, done.fail);
});
});
});