diff --git a/qunit/tdd.html b/qunit/tdd.html new file mode 100644 index 0000000..1ac8142 --- /dev/null +++ b/qunit/tdd.html @@ -0,0 +1,15 @@ + + + + + + QUnit Example + + + +
+
+ + + + \ No newline at end of file diff --git a/qunit/tests.js b/qunit/tests.js new file mode 100644 index 0000000..d979b97 --- /dev/null +++ b/qunit/tests.js @@ -0,0 +1,3 @@ +QUnit.test( "hello test", function( assert ) { + assert.ok( 1 == "1", "Passed!" ); +}); \ No newline at end of file