From ab9438ffdfdad7d43dc194a2115821f04be9d0a9 Mon Sep 17 00:00:00 2001 From: vsavkin Date: Thu, 5 Feb 2015 14:36:09 -0800 Subject: [PATCH] fix e2e tests --- modules/benchmarks/e2e_test/change_detection_spec.es6 | 2 +- modules/examples/e2e_test/hello_world/hello_world_spec.es6 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/benchmarks/e2e_test/change_detection_spec.es6 b/modules/benchmarks/e2e_test/change_detection_spec.es6 index ecccf52c24..a6f3552aef 100644 --- a/modules/benchmarks/e2e_test/change_detection_spec.es6 +++ b/modules/benchmarks/e2e_test/change_detection_spec.es6 @@ -8,7 +8,7 @@ describe('ng2 change detection benchmark', function () { it('should not throw errors', function() { browser.get(URL); - testUtil.clickAll(['#ng2DetectChanges', '#baselineDetectChanges']); + testUtil.clickAll(['#ng2ChangeDetectionDynamic', '#ng2ChangeDetectionJit', '#baselineChangeDetection']); }); }); diff --git a/modules/examples/e2e_test/hello_world/hello_world_spec.es6 b/modules/examples/e2e_test/hello_world/hello_world_spec.es6 index e7355401e2..37accb5ee8 100644 --- a/modules/examples/e2e_test/hello_world/hello_world_spec.es6 +++ b/modules/examples/e2e_test/hello_world/hello_world_spec.es6 @@ -1,5 +1,5 @@ var benchpress = require('../../../../tools/benchpress/index.js'); -fdescribe('hello world', function () { +describe('hello world', function () { afterEach(benchpress.verifyNoBrowserErrors);