diff --git a/test/parcel-runner.html b/test/parcel-runner.html new file mode 100644 index 00000000..b4c7bac6 --- /dev/null +++ b/test/parcel-runner.html @@ -0,0 +1,6 @@ + +
+ + + + diff --git a/test/parcel-runner.ts b/test/parcel-runner.ts new file mode 100644 index 00000000..82f01eb5 --- /dev/null +++ b/test/parcel-runner.ts @@ -0,0 +1,8 @@ +import 'mocha'; +import chai from 'chai'; + +mocha.ui('tdd'); +mocha.setup('bdd'); +mocha.run(); + +import './unit-new/Shape-test';