Skip to content

Commit d883291

Browse files
Update RunProcess.php: Removing MailCatcher (#6815)
1 parent dc4950a commit d883291

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ext/RunProcess.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* Extension to start and stop processes per suite.
20-
* Can be used to start/stop selenium server, chromedriver, [MailCatcher](https://mailcatcher.me/), etc.
20+
* Can be used to start/stop selenium server, chromedriver, etc.
2121
* Each command is executed only once, at the beginning of the test suite. To execute a command before each test, see [Before/After Attributes](https://codeception.com/docs/AdvancedUsage#BeforeAfter-Attributes).
2222
*
2323
* Can be enabled in suite config:
@@ -43,15 +43,15 @@
4343
*
4444
* In the end of a suite all launched processes will be stopped.
4545
*
46-
* To wait for the process to be launched use `sleep` option. In this case you need configuration to be specified as object:
46+
* To wait for the process to be launched use the `sleep` option. In this case you need configuration to be specified as object:
4747
*
4848
* ```yaml
4949
* extensions:
5050
* enabled:
5151
* - Codeception\Extension\RunProcess:
52-
* 0: java -jar ~/selenium-server.jar
53-
* 1: mailcatcher
54-
* sleep: 5 # wait 5 seconds for processes to boot
52+
* 0: php -S 127.0.0.1:8000 -t tests/data/app
53+
* 1: java -jar ~/selenium-server.jar
54+
* sleep: 5 # wait 5 seconds for the processes to boot
5555
* ```
5656
*
5757
* HINT: You can use different configurations per environment.

0 commit comments

Comments
 (0)