feat(benchmarks): add incremental-dom version of deep tree benchmark

This commit is contained in:
Tobias Bosch
2016-09-01 10:31:31 -07:00
committed by Martin Probst
parent 27d72e87c3
commit 2581c0851a
11 changed files with 107 additions and 7 deletions

View File

@ -41,6 +41,15 @@ describe('tree benchmark perf', () => {
ignoreBrowserSynchronization: true,
}).then(done, done.fail);
});
it('should run for the incremental dom', (done) => {
runTreeBenchmark({
id: 'deepTree.incrementalDom',
url: 'all/benchmarks/src/tree/incremental_dom/index.html',
ignoreBrowserSynchronization: true,
}).then(done, done.fail);
});
it('should run for polymer binary tree', (done) => {
runTreeBenchmark({
id: 'deepTree.polymer',