2015-02-11 11:40:29 -08:00
|
|
|
var testUtil = require('angular2/e2e_test/test_util');
|
2015-01-08 10:02:23 -08:00
|
|
|
|
|
|
|
describe('ng2 compiler benchmark', function () {
|
|
|
|
|
2015-02-02 16:25:34 -08:00
|
|
|
var URL = 'benchmarks/src/compiler/compiler_benchmark.html';
|
2015-01-08 10:02:23 -08:00
|
|
|
|
2015-01-09 18:00:04 -08:00
|
|
|
afterEach(testUtil.verifyNoBrowserErrors);
|
2015-01-08 10:02:23 -08:00
|
|
|
|
|
|
|
it('should not throw errors', function() {
|
|
|
|
browser.get(URL);
|
2015-01-09 18:00:04 -08:00
|
|
|
testUtil.clickAll(['#compileWithBindings', '#compileNoBindings']);
|
2015-01-08 10:02:23 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|