/*\ 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); }); }); })();