mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-28 00:40:01 +00:00
Fix tests broken in 1b6e8e1a7930115a0a9c90d4d03fb6c1b135484e
This commit is contained in:
parent
1b6e8e1a79
commit
4274e8fd7f
@ -34,23 +34,22 @@ describe("Wiki-based tests", function() {
|
|||||||
if(!wiki.tiddlerExists("Output")) {
|
if(!wiki.tiddlerExists("Output")) {
|
||||||
throw "Missing 'Output' tiddler";
|
throw "Missing 'Output' tiddler";
|
||||||
}
|
}
|
||||||
if(!wiki.tiddlerExists("ExpectedResult")) {
|
if(wiki.tiddlerExists("ExpectedResult")) {
|
||||||
throw "Missing 'ExpectedResult' tiddler";
|
// Construct the widget node
|
||||||
|
var text = "{{Output}}\n\n";
|
||||||
|
var widgetNode = createWidgetNode(parseText(text,wiki),wiki);
|
||||||
|
// Render the widget node to the DOM
|
||||||
|
var wrapper = renderWidgetNode(widgetNode);
|
||||||
|
// Clear changes queue
|
||||||
|
wiki.clearTiddlerEventQueue();
|
||||||
|
// Run the actions if provided
|
||||||
|
if(wiki.tiddlerExists("Actions")) {
|
||||||
|
widgetNode.invokeActionString(wiki.getTiddlerText("Actions"));
|
||||||
|
refreshWidgetNode(widgetNode,wrapper);
|
||||||
|
}
|
||||||
|
// Test the rendering
|
||||||
|
expect(wrapper.innerHTML).toBe(wiki.getTiddlerText("ExpectedResult"));
|
||||||
}
|
}
|
||||||
// Construct the widget node
|
|
||||||
var text = "{{Output}}\n\n";
|
|
||||||
var widgetNode = createWidgetNode(parseText(text,wiki),wiki);
|
|
||||||
// Render the widget node to the DOM
|
|
||||||
var wrapper = renderWidgetNode(widgetNode);
|
|
||||||
// Clear changes queue
|
|
||||||
wiki.clearTiddlerEventQueue();
|
|
||||||
// Run the actions if provided
|
|
||||||
if(wiki.tiddlerExists("Actions")) {
|
|
||||||
widgetNode.invokeActionString(wiki.getTiddlerText("Actions"));
|
|
||||||
refreshWidgetNode(widgetNode,wrapper);
|
|
||||||
}
|
|
||||||
// Test the rendering
|
|
||||||
expect(wrapper.innerHTML).toBe(wiki.getTiddlerText("ExpectedResult"));
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user