From 32248c8750830b012e8b7dac6c23095437ea1c95 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sat, 14 Mar 2020 14:20:29 +0100 Subject: [PATCH] Update post-install.txt Minor improvements, some mentioned at https://github.com/Codeception/Codeception/issues/5438 --- codeception/codeception/2.3/post-install.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/codeception/codeception/2.3/post-install.txt b/codeception/codeception/2.3/post-install.txt index d7e828fb..7f76b8fe 100644 --- a/codeception/codeception/2.3/post-install.txt +++ b/codeception/codeception/2.3/post-install.txt @@ -1,15 +1,15 @@ Bootstrapping Codeception -File codeception.yaml created <- global configuration +File codeception.yml created <- global configuration tests/unit created <- unit tests -tests/unit.suite.yaml written <- unit tests suite configuration +tests/unit.suite.yml written <- unit tests suite configuration tests/functional created <- functional tests -tests/functional.suite.yaml written <- functional tests suite configuration +tests/functional.suite.yml written <- functional tests suite configuration tests/acceptance created <- acceptance tests -tests/acceptance.suite.yaml written <- acceptance tests suite configuration +tests/acceptance.suite.yml written <- acceptance tests suite configuration Codeception is installed for acceptance, functional, and unit testing Next steps: -1. Edit tests/acceptance.suite.yaml to set url of your application. Change PhpBrowser to WebDriver to enable browser testing -2. Edit tests/functional.suite.yaml to enable a Doctrine module if needs. -3. Create your first acceptance tests using vendor/bin/codecept g:cest acceptance First -4. Write first test in tests/acceptance/FirstCest.php +1. Edit tests/acceptance.suite.yml to set the url of your application. Change PhpBrowser to WebDriver to enable browser testing. +2. Edit tests/functional.suite.yml to enable Doctrine module if needed. +3. Create your first acceptance test using vendor/bin/codecept g:cest acceptance First +4. Write your first test in tests/acceptance/FirstCest.php 5. Run tests using: vendor/bin/codecept run