mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-11 00:20:01 +00:00
![Jeremy Ruston](/assets/img/avatar_default.png)
There are still some whitespace and attribute ordering issues, but the result runs correctly.
12 lines
201 B
JavaScript
Executable File
12 lines
201 B
JavaScript
Executable File
jQuery(document).ready(function() {
|
|
module("<module>");
|
|
|
|
test("<section>", function() {
|
|
var actual, expected;
|
|
|
|
actual = <...>;
|
|
expected = <...>;
|
|
same(actual, expected, "<message>");
|
|
});
|
|
});
|