Gintautas Miselis

Results 169 comments of Gintautas Miselis

A screenshot or copy of the output would be nice

@ruudboon What's the state of this issue?

> Starting from Codeception 2.1 this [RunFailed] extension is enabled by default. It means that when you run `codeception bootstrap`, it generates codeception.yml file with enabled RunFailed extension.

This issue is part of bigger issue that steps aren't displayed in unit tests. It is the worst in tests of Codeception itself because it uses unit tests to test...

If the tests use database and Symfony services they really aren't unit tests. I usually put tests that are testing database integration to `db` suite, because I don't want database...

Setting lower bound of supported PHP versions at 8.1 is a bit extreme. We could use it in Codeception 5 if it supported PHP 8.0.

Your expectation was that Symfony autowiring will work for Codeception tests, but Codeception DI class does not collaborate with Symfony Service Container, the most it can do is to call...

I think that it would be nicer to declare interface for that: ```php foreach ($modules as $moduleName) { $module = $this->moduleContainer->create($moduleName); if ($module instanceof DependencyInjectionContainerProvider) { $this->di->addFallbackContainer($module->getDependencyInjectionContainer()); } }