diff --git a/app/www/test/index.html b/app/www/test/index.html new file mode 100644 index 0000000..787c67f --- /dev/null +++ b/app/www/test/index.html @@ -0,0 +1,16 @@ + + + + + + INTVAL3 client tests + + + +
+
+ + + + + \ No newline at end of file diff --git a/app/www/test/tests.js b/app/www/test/tests.js new file mode 100644 index 0000000..feed35c --- /dev/null +++ b/app/www/test/tests.js @@ -0,0 +1,3 @@ +QUnit.test('hello world', function (assert) { + assert.ok(true, 'this is ok') +}) \ No newline at end of file diff --git a/test/index.js b/test/index.js new file mode 100644 index 0000000..b76f080 --- /dev/null +++ b/test/index.js @@ -0,0 +1,5 @@ +'use strict' + +QUnit.test('hello world', function (assert) { + assert.ok(true, 'this is true') +}) \ No newline at end of file diff --git a/tests/index.js b/tests/index.js deleted file mode 100644 index 7f8e889..0000000 --- a/tests/index.js +++ /dev/null @@ -1,8 +0,0 @@ -'use strict' - -const intval = require('../lib/intval') - -intval.init() - -intval.setExposure(2000) -intval.setDir(false) \ No newline at end of file