We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4cdca1 commit e957399Copy full SHA for e957399
codeception.yml
@@ -18,3 +18,6 @@ coverage:
18
enabled: true
19
include:
20
- src/*
21
+# Get params from .env file
22
+params:
23
+ - tests/.env.test
tests/.env.test
@@ -0,0 +1,2 @@
1
+CODECEPTION_URL=127.0.0.1
2
+CODECEPTION_PORT=8888
tests/acceptance.suite.yml
@@ -0,0 +1,15 @@
+# Codeception Test Suite Configuration
+#
3
+# Suite for acceptance tests.
4
+# Perform tests in browser using the WebDriver or PhpBrowser.
5
+# If you need both WebDriver and PHPBrowser tests - create a separate suite.
6
+
7
+actor: AcceptanceTester
8
+modules:
9
+ enabled:
10
+ - PhpBrowser:
11
+ url: 'http://%CODECEPTION_URL%:%CODECEPTION_PORT%'
12
+ curl:
13
+ CURLOPT_RETURNTRANSFER: true
14
+# - \Helper\Acceptance
15
+ step_decorators: ~
0 commit comments