From 61a31777f13b59e923694bac3c817b72f4643441 Mon Sep 17 00:00:00 2001 From: Josh Biddick Date: Thu, 5 Sep 2019 09:45:21 +1200 Subject: [PATCH] Pass tests in cases where no tests exist --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 53eb7b076..aeacd00ea 100755 --- a/src/index.ts +++ b/src/index.ts @@ -248,7 +248,7 @@ prog scripts: { start: 'tsdx watch', build: 'tsdx build', - test: template === 'react' ? 'tsdx test --env=jsdom' : 'tsdx test', + test: template === 'react' ? 'tsdx test --env=jsdom --passWithNoTests' : 'tsdx test', lint: 'tsdx lint', }, peerDependencies: template === 'react' ? { react: '>=16' } : {},