Skip to content

Commit 6eef23a

Browse files
committed
fix typo (venodor -> vendor)
1 parent a9b33f5 commit 6eef23a

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

_posts/2022-07-02-codeception-5.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ In this case, you specify the batch of tests that should be executed independent
111111

112112
```
113113
# first job
114-
./venodor/bin/codecept run --shard 1/3
114+
./vendor/bin/codecept run --shard 1/3
115115
116116
# second job
117-
./venodor/bin/codecept run --shard 2/3
117+
./vendor/bin/codecept run --shard 2/3
118118
119119
# third job
120-
./venodor/bin/codecept run --shard 3/3
120+
./vendor/bin/codecept run --shard 3/3
121121
```
122122

123123
This feature reduces the need for complex configuration and usage of `robo` task runner to split tests.
@@ -129,7 +129,7 @@ It is recommended to use sharding to parallelize tests between multiple jobs as
129129
New options `--grep` and `--filter` were introduced to select tests by part of their name. Actually, it is the same option and an alias. `--grep` is a common way to select tests to execute in NodeJS test runners, so we ported it to Codeception. But as usual, specific tests can also be executed by group or specifying a test signature.
130130

131131
```
132-
php venodor/bin/codecept run --grep "user"
132+
php vendor/bin/codecept run --grep "user"
133133
```
134134

135135
## Other Changes

docs/12-ParallelExecution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ Each job should have Codeception running a subset of tests set by `--shard` opti
2424
First job
2525

2626
```
27-
php venodor/bin/codecept run --shard 1/3
27+
php vendor/bin/codecept run --shard 1/3
2828
```
2929

3030
Second job
3131

3232
```
33-
php venodor/bin/codecept run --shard 2/3
33+
php vendor/bin/codecept run --shard 2/3
3434
```
3535

3636
Third job
3737

3838
```
39-
php venodor/bin/codecept run --shard 3/3
39+
php vendor/bin/codecept run --shard 3/3
4040
```
4141

4242
For each job you specify on how many groups tests should be split and the group that should be executed on this agent.

docs/ParallelExecution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ Each job should have Codeception running a subset of tests set by `--shard` opti
2424
First job
2525

2626
```
27-
php venodor/bin/codecept run --shard 1/3
27+
php vendor/bin/codecept run --shard 1/3
2828
```
2929

3030
Second job
3131

3232
```
33-
php venodor/bin/codecept run --shard 2/3
33+
php vendor/bin/codecept run --shard 2/3
3434
```
3535

3636
Third job
3737

3838
```
39-
php venodor/bin/codecept run --shard 3/3
39+
php vendor/bin/codecept run --shard 3/3
4040
```
4141

4242
For each job you specify on how many groups tests should be split and the group that should be executed on this agent.

guides/12-ParallelExecution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ Each job should have Codeception running a subset of tests set by `--shard` opti
1818
First job
1919

2020
```
21-
php venodor/bin/codecept run --shard 1/3
21+
php vendor/bin/codecept run --shard 1/3
2222
```
2323

2424
Second job
2525

2626
```
27-
php venodor/bin/codecept run --shard 2/3
27+
php vendor/bin/codecept run --shard 2/3
2828
```
2929

3030
Third job
3131

3232
```
33-
php venodor/bin/codecept run --shard 3/3
33+
php vendor/bin/codecept run --shard 3/3
3434
```
3535

3636
For each job you specify on how many groups tests should be split and the group that should be executed on this agent.

0 commit comments

Comments
 (0)