From 396f25dd4b8ab3aded5bbef5129fc5fd56653825 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 4 Apr 2017 15:47:15 +0200 Subject: [PATCH] document --build option, #23742 --- test/electron/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/electron/index.js b/test/electron/index.js index 0183313f13a..215966e9087 100644 --- a/test/electron/index.js +++ b/test/electron/index.js @@ -10,6 +10,7 @@ const { join } = require('path'); const optimist = require('optimist') .describe('grep', 'only run tests matching ').string('grep').alias('grep', 'g').string('g') .describe('run', 'only run tests from ').string('run') + .describe('build', 'run with build output (out-build)').boolean('build') .describe('debug', 'open dev tools, keep window open, reuse app data').string('debug'); const argv = optimist.argv;