From c5b08cc1fae0670f295066527a4b9f7255fe6f45 Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Thu, 15 Dec 2016 12:24:11 -0700 Subject: [PATCH] add --include options to test:server Original commit: elastic/kibana-plugin-helpers@d3b5e2420754939beec53fab1e30afbc80af2fb7 --- packages/kbn-plugin-helpers/bin/plugin-helpers.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/kbn-plugin-helpers/bin/plugin-helpers.js b/packages/kbn-plugin-helpers/bin/plugin-helpers.js index c1c4cc58630b..603be74575d0 100755 --- a/packages/kbn-plugin-helpers/bin/plugin-helpers.js +++ b/packages/kbn-plugin-helpers/bin/plugin-helpers.js @@ -32,14 +32,15 @@ program program .command('test:browser') - .option('--dev', 'Enable dev mode, keeps the test server running') .description('Run the browser tests in a real web browser') + .option('--dev', 'Enable dev mode, keeps the test server running') .on('--help', docs('test/browser')) .action(run('test/browser')); program .command('test:server') .description('Run the server tests using mocha') + .option('-i, --include ', 'Additional files of glob patterns to include server tests from') .on('--help', docs('test/server')) .action(run('test/server'));