Merge pull request #119 from pistolero/config_context
Added context for config handlers
This commit is contained in:
commit
f7240e0ce5
3 changed files with 49 additions and 2 deletions
|
|
@ -998,9 +998,39 @@ function testMithril(mock) {
|
|||
test(function() {
|
||||
return m.deps.factory.toString().indexOf("console") < 0
|
||||
})
|
||||
|
||||
// config context
|
||||
test(function() {
|
||||
var root = mock.document.createElement("div")
|
||||
|
||||
var success = false;
|
||||
m.render(root, m("div", {config: function(elem, isInitialized, ctx) {ctx.data=1}}));
|
||||
m.render(root, m("div", {config: function(elem, isInitialized, ctx) {success = ctx.data===1}}));
|
||||
return success;
|
||||
})
|
||||
|
||||
// more complex config context
|
||||
test(function() {
|
||||
var root = mock.document.createElement("div")
|
||||
|
||||
var idx = 0;
|
||||
var success = true;
|
||||
var statefulConfig = function(elem, isInitialized, ctx) {ctx.data=idx++}
|
||||
var node = m("div", {config: statefulConfig});
|
||||
m.render(root, [node, node]);
|
||||
|
||||
idx = 0;
|
||||
var checkConfig = function(elem, isInitialized, ctx) {
|
||||
success = success && (ctx.data === idx++)
|
||||
}
|
||||
node = m("div", {config: checkConfig});
|
||||
m.render(root, [node, node]);
|
||||
return success;
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
//mocks
|
||||
testMithril(mock.window)
|
||||
|
||||
test.print(console.log)
|
||||
test.print(console.log)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue