1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-02 08:50:46 +00:00
TiddlyWiki5/editions/test/tiddlers/tests/test.js

22 lines
345 B
JavaScript
Raw Normal View History

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