From fe8c480bd860209cc68768de884d050cbf1a5b27 Mon Sep 17 00:00:00 2001 From: Christiaan Scheermeijer Date: Fri, 16 Jun 2017 10:46:52 +0200 Subject: [PATCH] docs(frameworks) update cucumber dry run option Fixed incorrect usage of the cucumber dry run option. --- docs/frameworks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/frameworks.md b/docs/frameworks.md index 4673bfbbc..0e08db1ee 100644 --- a/docs/frameworks.md +++ b/docs/frameworks.md @@ -101,7 +101,7 @@ exports.config = { tags: [], // (expression) only execute the features or scenarios with tags matching the expression strict: true, // fail if there are any undefined or pending steps format: ["pretty"], // (type[:path]) specify the output format, optionally supply PATH to redirect formatter output (repeatable) - dryRun: false, // invoke formatters without executing steps + 'dry-run': false, // invoke formatters without executing steps compiler: [] // ("extension:module") require files with the given EXTENSION after requiring MODULE (repeatable) },