1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 18:23:28 +00:00
TiddlyWiki5/editions/test/tiddlers/tests/test.js
2013-04-25 09:06:41 +01:00

22 lines
345 B
JavaScript

/*\
title: test.js
type: application/javascript
tags: [[$:/tags/test-spec]]
An example test specification
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
describe("WikiParser tests", function() {
it("contains spec with an expectation", function() {
expect(true).toBe(true);
});
});
})();