Blob Blame History Raw
diff --git a/package/test/index.js b/package/test/index.js
index 1a28e49..6e4d782 100644
--- a/package/test/index.js
+++ b/package/test/index.js
@@ -1,2 +1,6 @@
 var tap = require('tap')
-tap.pass('this is a test')
+
+tap.test('sanity check', function (t) {
+  t.ok(true, 'this is a test')
+  t.end()
+})