aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario
diff options
context:
space:
mode:
Diffstat (limited to 'test/scenario')
-rw-r--r--test/scenario/dslSpec.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js
index efedeeb5..3d68925f 100644
--- a/test/scenario/dslSpec.js
+++ b/test/scenario/dslSpec.js
@@ -260,15 +260,13 @@ describe("angular.scenario.dsl", function() {
describe('Binding', function() {
it('should select binding by name', function() {
- if (msie) return; // TODO reenable!
- doc.append('<span ng:bind="foo.bar">some value</span>');
+ doc.append('<span class="ng-binding" ng:bind="foo.bar">some value</span>');
$root.dsl.binding('foo.bar');
expect($root.futureResult).toEqual('some value');
});
it('should select binding in template by name', function() {
- if (msie) return; // TODO reenable!
- doc.append('<pre ng:bind-template="foo {{bar}} baz">foo some baz</pre>');
+ doc.append('<pre class="ng-binding" ng:bind-template="foo {{bar}} baz">foo some baz</pre>');
$root.dsl.binding('bar');
expect($root.futureResult).toEqual('foo some baz');
});