atreo/codeception

Implementation of Codeception to Nette Framework.

1.0.10 2016-07-13 12:16 UTC

This package is not auto-updated.

Last update: 2024-04-17 17:30:29 UTC


README

Installation

$ composer require atreo/codeception

Extension configuration:

codeception: Atreo\Codeception\Di\CodeceptionExtension

Update your bootstrap.php like in example. Probably just add:

$configurator->addParameters([
	'appDir' => __DIR__,
	'wwwDir' => __DIR__ . '/../www'
]);

And then copy example codeception.yml and tests folder to your project root.

Now you are ready to run codeception:

$ php vendor/bin/codecept run

If you are using kdyby/events you will probably have to update composer.json:

"require": {
"kdyby/events": "@dev" },
"repositories": [
	{ "type": "git", "url": "https://github.com/AtreoCZ/Events.git" }
]