From 47e5c64df0c2042306db41dc576bc921164492ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Mon, 30 Apr 2018 08:14:46 +0900 Subject: [PATCH] Add: qunit test html --- qunit/tdd.html | 15 +++++++++++++++ qunit/tests.js | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 qunit/tdd.html create mode 100644 qunit/tests.js 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