mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 12:07:19 +00:00
Fix: Fix tests for deserialize[] so they can be run on browser as well as node.js (#7543)
This commit is contained in:
parent
edaa3727d9
commit
f4626aa69e
@ -1066,7 +1066,11 @@ Tests the filtering mechanism.
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("should handle the deserializers operator", function() {
|
it("should handle the deserializers operator", function() {
|
||||||
expect(wiki.filterTiddlers("[deserializers[]]").join(",")).toBe("application/javascript,application/json,application/x-tiddler,application/x-tiddler-html-div,application/x-tiddlers,text/css,text/html,text/plain");
|
var expectedDeserializers = ["application/javascript","application/json","application/x-tiddler","application/x-tiddler-html-div","application/x-tiddlers","text/css","text/html","text/plain"];
|
||||||
|
if($tw.browser) {
|
||||||
|
expectedDeserializers.unshift("(DOM)");
|
||||||
|
}
|
||||||
|
expect(wiki.filterTiddlers("[deserializers[]]").join(",")).toBe(expectedDeserializers.join(","));
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should handle the charcode operator", function() {
|
it("should handle the charcode operator", function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user