Skip to content

Commit d952d0c

Browse files
committed
Fixed codeception paths.
1 parent 551e925 commit d952d0c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: docs/commands/codeception.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@ To run the Codeception testing framework commands directly, change your director
1212
Run all the generated tests:
1313

1414
```bash
15-
vendor/bin/codecept run functional
15+
../../../vendor/bin/codecept run functional
1616
```
1717

1818
Run all tests without the `<group value="skip"/>` [annotation][]:
1919

2020
```bash
21-
vendor/bin/codecept run functional --skip-group skip
21+
../../../vendor/bin/codecept run functional --skip-group skip
2222
```
2323

2424
Run all tests with the `<group value="example"/>` [annotation][] but with no `<group value="skpip"/>`:
2525

2626
```bash
27-
vendor/bin/codecept run functional --group example --skip-group skip
27+
../../../vendor/bin/codecept run functional --group example --skip-group skip
2828
```
2929

3030
## `codecept run`
3131

3232
`codecept run` runs the test suites:
3333

3434
```bash
35-
vendor/bin/codecept run
35+
../../../vendor/bin/codecept run
3636
```
3737

3838
<div class="bs-callout bs-callout-info">

Diff for: docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ cd dev/tests/acceptance
183183
```
184184

185185
```bash
186-
vendor/bin/codecept run functional
186+
../../../vendor/bin/codecept run functional
187187
```
188188

189189
See more commands in [`codecept`][].

0 commit comments

Comments
 (0)