* Reset also fob_symfony.driver_kernel between scenarios

* Make sure reset() for the Mink driver implementation creates new KernelBrowser instances, to achieve consistent reboots of the `fob_symfony.driver_kernel` when making more than one request within a single scenario
This commit is contained in:
Matthias Pigulla
2022-11-24 12:22:48 +00:00
parent 8a0c40c9bc
commit f1971fde57
5 changed files with 270 additions and 14 deletions

View File

@@ -167,7 +167,7 @@ final class Controller
{
$this->counter->increase();
return new Response('Hello world!');
return new Response('Hello world! The counter value is ' . $this->counter->get());
}
}
CON