mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-01 22:27:10 +00:00
22 lines
345 B
JavaScript
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);
|
|
});
|
|
});
|
|
|
|
})();
|