From c44b1f66ee2a56e8bc3dd2baabe2e1a41159f084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arek=20Czoga=C5=82a?= Date: Wed, 16 Oct 2019 11:12:35 +0200 Subject: [PATCH] fix(madrun) client test command: fix test:client command (#260) --- madrun.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/madrun.js b/madrun.js index e322f1f8..b8322f67 100644 --- a/madrun.js +++ b/madrun.js @@ -42,11 +42,11 @@ module.exports = { 'test:base': () => { const cmd = 'tape'; const names = `'test/**/*.js' '{client,static,common,server}/**/*.spec.js'`; - + return `${cmd} ${names}`; }, 'test': () => `${env} ${run('test:base')}`, - 'test:client': () => `tape 'test/client/**/*.js`, + 'test:client': () => `tape 'test/client/**/*.js'`, 'test:server': () => `tape 'test/**/*.js' 'server/**/*.spec.js' 'common/**/*.spec.js'`, 'wisdom': () => run(['lint:all', 'build', 'test']), 'wisdom:type': () => 'bin/release.js', @@ -96,4 +96,3 @@ module.exports = { 'heroku-postbuild': () => run('6to5:client'), 'putout': () => 'putout bin client static server common test .cloudcmd.menu.js', }; -