mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-30 04:36:45 +00:00
Move the editions into a subfolder
This commit is contained in:
21
editions/tw2/source/tiddlywiki/test/js/Shadows.js
Executable file
21
editions/tw2/source/tiddlywiki/test/js/Shadows.js
Executable file
@@ -0,0 +1,21 @@
|
||||
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');
|
||||
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user