aboutsummaryrefslogtreecommitdiffstats
path: root/test/CompilerSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/CompilerSpec.js')
-rw-r--r--test/CompilerSpec.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CompilerSpec.js b/test/CompilerSpec.js
index 7bf48d18..9f02262d 100644
--- a/test/CompilerSpec.js
+++ b/test/CompilerSpec.js
@@ -83,9 +83,7 @@ describe('compiler', function(){
var template = this.compile(element);
return function(marker) {
this.$eval(function() {
- dump("A");
marker.after(template(element.clone()).element);
- dump("B");
});
};
};
@@ -114,7 +112,7 @@ describe('compiler', function(){
if (text == 'middle') {
expect(textNode.text()).toEqual(text);
parentNode.attr('ng-hello', text);
- textNode.nodeValue = 'replaced';
+ textNode.text('replaced');
}
});
var scope = compile('before<span>middle</span>after');
@@ -122,7 +120,7 @@ describe('compiler', function(){
expect(log).toEqual("hello middle");
});
- it('should replace widgets', function(){
+ xit('should replace widgets', function(){
widgets.button = function(element) {
element.parentNode.replaceChild(button, element);
return function(element) {