From b9e387543604cf8b6875f9e9f683042f4ce7fc5c Mon Sep 17 00:00:00 2001 From: Bevan Date: Wed, 29 Oct 2014 09:26:38 +1300 Subject: [PATCH 1/2] Complete docs for zombie driver integration --- doc/index.rst | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/doc/index.rst b/doc/index.rst index 409d400b..9e615eed 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -285,12 +285,15 @@ the following parameters to avoid the validation error triggered by Guzzle : .. code-block:: yaml - default: - extensions: - Behat\MinkExtension: - sessions: - default: - zombie: ~ + default: + extensions: + Behat\MinkExtension\Extension: + zombie: + # Specify the path to the node_modules directory. + node_modules_path: /usr/local/lib/node_modules/ + default_session: 'zombie' + javascript_session: 'zombie' + .. note:: From 2b5654d7110095a68011004988f23cfea42b5271 Mon Sep 17 00:00:00 2001 From: Bevan Date: Fri, 31 Oct 2014 07:51:59 +1300 Subject: [PATCH 2/2] Update index.rst --- doc/index.rst | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/doc/index.rst b/doc/index.rst index 9e615eed..23fb9c64 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -285,15 +285,14 @@ the following parameters to avoid the validation error triggered by Guzzle : .. code-block:: yaml - default: - extensions: - Behat\MinkExtension\Extension: - zombie: - # Specify the path to the node_modules directory. - node_modules_path: /usr/local/lib/node_modules/ - default_session: 'zombie' - javascript_session: 'zombie' - + default: + extensions: + Behat\MinkExtension: + sessions: + default: + zombie: + # Specify the path to the node_modules directory. + node_modules_path: /usr/local/lib/node_modules/ .. note::