
- use performance log of chromedriver / appium to get timeline data for calculating metrics for benchmarks - change all benchmarks to be made of a standalone application and a protractor test that collectes timeline data - fix and simplify benchmarks - add dart2js to build - remove benchpress Closes #330
27 lines
642 B
JavaScript
27 lines
642 B
JavaScript
"use strict";
|
|
var util = require('../../../../tools/perf/util.js');
|
|
|
|
describe('ng2 compiler benchmark', function () {
|
|
|
|
var URL = 'benchmarks/web/compiler/compiler_benchmark.html';
|
|
|
|
afterEach(util.verifyNoErrors);
|
|
|
|
it('should log withBindings stats', function() {
|
|
util.runSimpleBenchmark({
|
|
url: URL,
|
|
buttons: ['#compileWithBindings'],
|
|
name: browser.params.lang+'.ng2.compile.withBindings'
|
|
});
|
|
});
|
|
|
|
it('should log noBindings stats', function() {
|
|
util.runSimpleBenchmark({
|
|
url: URL,
|
|
buttons: ['#compileNoBindings'],
|
|
name: browser.params.lang+'.ng2.compile.noBindings'
|
|
});
|
|
});
|
|
|
|
});
|