From 75bd2782c646c170955c9fd397507c6c0da664be Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Mon, 25 Feb 2019 07:56:17 -0500 Subject: [PATCH] parcel files --- test/parcel-runner.html | 6 ++++++ test/parcel-runner.ts | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 test/parcel-runner.html create mode 100644 test/parcel-runner.ts 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';