mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
22 lines
539 B
JavaScript
22 lines
539 B
JavaScript
|
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');
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|