From b3e0c779889dd99b635ffc9928363ba3c5322b06 Mon Sep 17 00:00:00 2001 From: Dan Mindru Date: Thu, 5 Sep 2019 10:03:59 +0200 Subject: [PATCH] Add empty tests --- .gitignore | 1 + tests/unit/check-for-unused.js | 3 +++ tests/unit/util.js | 3 +++ 3 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 06c3bb3..8b5090e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ .DS_Store /dist IDEAS.md +npm_debug.log diff --git a/tests/unit/check-for-unused.js b/tests/unit/check-for-unused.js index e69de29..1caca2d 100644 --- a/tests/unit/check-for-unused.js +++ b/tests/unit/check-for-unused.js @@ -0,0 +1,3 @@ +const test = require('ava'); + +test('noop', async t => { t.deepEqual('', ''); }); diff --git a/tests/unit/util.js b/tests/unit/util.js index e69de29..1caca2d 100644 --- a/tests/unit/util.js +++ b/tests/unit/util.js @@ -0,0 +1,3 @@ +const test = require('ava'); + +test('noop', async t => { t.deepEqual('', ''); });