You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Codeception/Module/Symfony.php
+37-3
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@
36
36
* * debug: true - turn on/off debug mode
37
37
* * cache_router: 'false' - enable router caching between tests in order to [increase performance](http://lakion.com/blog/how-did-we-speed-up-sylius-behat-suite-with-blackfire)
38
38
* * rebootable_client: 'true' - reboot client's kernel before each request
39
+
* * mailer: 'symfony_mailer' - choose the mailer used by your application
39
40
*
40
41
* #### Example (`functional.suite.yml`) - Symfony 4 Directory Structure
41
42
*
@@ -56,6 +57,7 @@
56
57
* * debug: true - turn on/off debug mode
57
58
* * cache_router: 'false' - enable router caching between tests in order to [increase performance](http://lakion.com/blog/how-did-we-speed-up-sylius-behat-suite-with-blackfire)
58
59
* * rebootable_client: 'true' - reboot client's kernel before each request
60
+
* * mailer: 'swiftmailer' - choose the mailer used by your application
59
61
*
60
62
* #### Example (`functional.suite.yml`) - Symfony 3 Directory Structure
61
63
*
@@ -76,6 +78,7 @@
76
78
* * em_service: 'doctrine.orm.entity_manager' - use the stated EntityManager to pair with Doctrine Module.
77
79
* * cache_router: 'false' - enable router caching between tests in order to [increase performance](http://lakion.com/blog/how-did-we-speed-up-sylius-behat-suite-with-blackfire)
78
80
* * rebootable_client: 'true' - reboot client's kernel before each request
81
+
* * mailer: 'swiftmailer' - choose the mailer used by your application
79
82
*
80
83
* ### Example (`functional.suite.yml`) - Symfony 2.x Directory Structure
81
84
*
@@ -113,6 +116,9 @@
113
116
*/
114
117
class Symfony extends Framework implements DoctrineProvider, PartedModule
0 commit comments