Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions _includes/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The screenshots are saved to `tests/_output/record_*` directories, open `index.h

#### Installation

Add this to the list of enabled extensions in `codeception.yml` or `acceptance.suite.yml`:
Add this to the list of enabled extensions in `codeception.yml` or `Acceptance.suite.yml`:

``` yaml
extensions:
Expand Down Expand Up @@ -112,7 +112,7 @@ It is also possible to skip recording of steps for specified tests by using the
/**
* @skipRecording login
* @skipRecording amOnUrl
*\/
*/
public function testLogin(AcceptanceTester $I)
{
$I->login();
Expand All @@ -136,7 +136,7 @@ Dependent processes run sequentially one by one.
Can be configured in suite config:

```yaml
# acceptance.suite.yml
# Acceptance.suite.yml
extensions:
enabled:
- Codeception\Extension\RunBefore:
Expand Down Expand Up @@ -193,7 +193,7 @@ Can be used to start/stop selenium server, chromedriver, mailcatcher, etc.
Can be configured in suite config:

```yaml
# acceptance.suite.yml
# Acceptance.suite.yml
extensions:
enabled:
- Codeception\Extension\RunProcess:
Expand All @@ -203,7 +203,7 @@ extensions:
Multiple parameters can be passed as array:

```yaml
# acceptance.suite.yml
# Acceptance.suite.yml

extensions:
enabled:
Expand Down