mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
- adds console and cloud reporter (via Google BigQuery). - makes parameters of tests explicit and modifiable. - removes `detect` and `ignoreGc` mode from benchpress as these can result in unstable numbers.
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
var testUtil = require('../../e2e_test_lib/e2e_test/test_util');
|
|
|
|
describe('ng1.x tree benchmark', function () {
|
|
|
|
var URL = 'benchmarks_external/web/tree/tree_benchmark.html';
|
|
|
|
afterEach(testUtil.verifyNoBrowserErrors);
|
|
|
|
it('should not throw errors', function() {
|
|
browser.get(URL);
|
|
testUtil.clickAll(['#createDom', '#destroyDom']);
|
|
});
|
|
|
|
});
|