1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-12 23:39:41 +00:00
TiddlyWiki5/editions/tw2/source/tiddlywiki/test/js/Shadows.js
2012-11-16 21:20:27 +00:00

22 lines
539 B
JavaScript
Executable File

jQuery(document).ready(function(){
module("TiddlyWiki core");
test("Shadow tiddler existence", function() {
expect(2);
var actual = config.shadowTiddlers["EditTemplate"];
ok(actual,'EditTemplate shadow tiddler should exist');
loadShadowTiddlers();
actual = config.shadowTiddlers["StyleSheetColors"];
ok(actual,'StyleSheetColors shadow tiddler should exist');
actual = config.shadowTiddlers["SystemSettings"];
strictEqual(typeof(actual) !== 'undefined',true,'SystemSettings shadow tiddler should exist');
});
});