/* * @author Hong-Phuc Bui * @filename dfhi-dom-test * Initial Date 16.12.19 */ import "../../node_modules/qunit/qunit/qunit.css"; import { QUnit } from "qunit"; import {newInput, download, newClickButton} from "../../src/lib/dfhi-dom.js"; QUnit.test("test newInput", (assert) => { assert.notOk(`Exercise: write test for function ${newInput.name}`); }); QUnit.test("test download", (assert) => { assert.notOk(`Exercise: write test for function ${download.name}`); }); QUnit.test("test newClickButton", (assert) => { assert.notOk(`Exercise: write test for function ${newClickButton.name}`); });