From 8d69959650bcd75b446d8561071d860424ee68ac Mon Sep 17 00:00:00 2001 From: Gen Hames Date: Thu, 5 Aug 2021 01:46:24 -0700 Subject: [PATCH] Test framework is ready: #3 SOON --- test/haptic-dom.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/haptic-dom.test.ts b/test/haptic-dom.test.ts index e80dd94..18eec54 100644 --- a/test/haptic-dom.test.ts +++ b/test/haptic-dom.test.ts @@ -1 +1,5 @@ -console.log('Test haptic-dom.test.ts'); +import { test } from 'zora'; + +void test('hello from zora', ({ ok }) => { + ok(true, 'it worked'); +});