We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68f2ab6 commit 6a91ae6Copy full SHA for 6a91ae6
1 file changed
test/integration/browser/src/index.ts
@@ -18,6 +18,11 @@ const optimist = require('optimist')
18
.describe('browser', 'browser in which integration tests should run').string('browser').default('browser', 'chromium')
19
.describe('help', 'show the help').alias('help', 'h');
20
21
+if (optimist.argv.help) {
22
+ optimist.showHelp();
23
+ process.exit(0);
24
+}
25
+
26
const width = 1200;
27
const height = 800;
28
0 commit comments