Skip to content

Commit 66987d3

Browse files
committed
Updated changelog and module documentation
1 parent dfd6bd5 commit 66987d3

File tree

16 files changed

+35
-13
lines changed

16 files changed

+35
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ _site/
33
.jekyll-metadata
44
/build
55
/composer.lock
6+
/docs/modules/AbstractAsserts.md
67
/package/composer.lock
78
/package/vendor
89
/vendor

_includes/extensions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ Monolog should be installed additionally by Composer.
4747
composer require monolog/monolog
4848
```
4949

50-
Steps are logged into `tests/_output/codeception.log`
50+
Codeception's core/internal stuff is logged into `tests/_output/codeception.log`.
51+
Test suites' steps are logged into `tests/_output/<test_full_name>-<rotation_date>.log`.
5152

5253
To enable this module add to your `codeception.yml`:
5354

@@ -157,7 +158,7 @@ HINT: you can use different configurations per environment.
157158

158159
[See Source](https://github.com/Codeception/Codeception/blob/4.1/ext/RunFailed.php)
159160

160-
Saves failed tests into tests/log/failed in order to rerun failed tests.
161+
Saves failed tests into tests/_output/failed in order to rerun failed tests.
161162

162163
To rerun failed tests just run the `failed` group:
163164

changelog.markdown

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ title: Codeception Changelog
88
# Changelog
99

1010

11+
#### 4.1.8
12+
13+
* Support Covertura code coverage format [#5994](https://github.com/Codeception/Codeception/issues/5994) by **[zachkknowbe4](https://github.com/zachkknowbe4)**
14+
* Compatibility with vlucas/phpdotenv v5 [#5975](https://github.com/Codeception/Codeception/issues/5975) by **[johanzandstra](https://github.com/johanzandstra)**
15+
* Support absolute output dir path on Windows [#5966](https://github.com/Codeception/Codeception/issues/5966) by **[Naktibalda](https://github.com/Naktibalda)**
16+
* Fix --no-redirect option for run command [#5967](https://github.com/Codeception/Codeception/issues/5967) by **[convenient](https://github.com/convenient)**
17+
* Code coverage: Don't make request to c3.php if remote=false [#5991](https://github.com/Codeception/Codeception/issues/5991) by **[dereuromark](https://github.com/dereuromark)**
18+
* Gherkin: Fail on ambiguous step definition [#5866](https://github.com/Codeception/Codeception/issues/5866) by **[matthiasnoback](https://github.com/matthiasnoback)**
19+
* Removed complicated merge logic for environment configurations [#5948](https://github.com/Codeception/Codeception/issues/5948) by **[Sasti](https://github.com/Sasti)**
20+
* Logger extension: add .log to suite log files [#5982](https://github.com/Codeception/Codeception/issues/5982) by **[varp](https://github.com/varp)**
21+
1122
#### 4.1.7
1223

1324
* Compatibility with PhpCodeCoverage 9 and PHPUnit 9.3

docs/modules/Cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Checks that output from latest command doesn't contain text
5454
#### runShellCommand
5555

5656
Executes a shell command.
57-
Fails If exit code is > 0. You can disable this by setting second parameter to false
57+
Fails if exit code is > 0. You can disable this by passing `false` as second argument
5858

5959
{% highlight php %}
6060

@@ -79,7 +79,7 @@ Checks that output from last executed command contains text
7979

8080
#### seeResultCodeIs
8181

82-
Checks result code
82+
Checks result code. To verify a result code > 0, you need to pass `false` as second argument to `runShellCommand()`
8383

8484
{% highlight php %}
8585

docs/modules/Laravel5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,7 @@ $I->grabAttributeFrom('#tooltip', 'title');
894894

895895
Grabs a cookie value.
896896
You can set additional cookie params like `domain`, `path` in array passed as last argument.
897+
If the cookie is set by an ajax request (XMLHttpRequest), there might be some delay caused by the browser, so try `$I->wait(0.1)`.
897898

898899
* `param` $cookie
899900

docs/modules/Lumen.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,7 @@ $I->grabAttributeFrom('#tooltip', 'title');
688688

689689
Grabs a cookie value.
690690
You can set additional cookie params like `domain`, `path` in array passed as last argument.
691+
If the cookie is set by an ajax request (XMLHttpRequest), there might be some delay caused by the browser, so try `$I->wait(0.1)`.
691692

692693
* `param` $cookie
693694

docs/modules/Mezzio.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,7 @@ $I->grabAttributeFrom('#tooltip', 'title');
607607

608608
Grabs a cookie value.
609609
You can set additional cookie params like `domain`, `path` in array passed as last argument.
610+
If the cookie is set by an ajax request (XMLHttpRequest), there might be some delay caused by the browser, so try `$I->wait(0.1)`.
610611

611612
* `param` $cookie
612613

docs/modules/Phalcon.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -718,6 +718,7 @@ $I->grabAttributeFrom('#tooltip', 'title');
718718

719719
Grabs a cookie value.
720720
You can set additional cookie params like `domain`, `path` in array passed as last argument.
721+
If the cookie is set by an ajax request (XMLHttpRequest), there might be some delay caused by the browser, so try `$I->wait(0.1)`.
721722

722723
* `param` $cookie
723724

docs/modules/Phalcon4.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,7 @@ $I->grabAttributeFrom('#tooltip', 'title');
714714

715715
Grabs a cookie value.
716716
You can set additional cookie params like `domain`, `path` in array passed as last argument.
717+
If the cookie is set by an ajax request (XMLHttpRequest), there might be some delay caused by the browser, so try `$I->wait(0.1)`.
717718

718719
* `param` $cookie
719720

docs/modules/PhpBrowser.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,7 @@ $I->grabAttributeFrom('#tooltip', 'title');
708708

709709
Grabs a cookie value.
710710
You can set additional cookie params like `domain`, `path` in array passed as last argument.
711+
If the cookie is set by an ajax request (XMLHttpRequest), there might be some delay caused by the browser, so try `$I->wait(0.1)`.
711712

712713
* `param` $cookie
713714

0 commit comments

Comments
 (0)