You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
QUnit.test("raw bindings work", function(assert){
Component.extend({
tag: "raw-bindings",
viewModel: function(){
return new SimpleMap({});
}
});
var renderer = stache("<raw-bindings thing:raw='yes'></raw-bindings>");
var frag = renderer();
var viewModel = canViewModel(frag.firstChild);
assert.equal(viewModel.attr("thing"), "yes", "able to set raw values");
})
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: