Henrik Gemal
Henrik Gemal
is it possible to use the html reporter from the command line? I invoke axe from command line and would like to generate the report directly
I have a unit test that sometimes fails Our code is: ``` $differ = new Differ(); $msg = $differ->diff($oldData, $newData); ``` if I do: print_r($parser->parse($msg)); I get: ``` array (...
We have the `AssertSameWithCountRule` rule: https://github.com/phpstan/phpstan-phpunit/blob/2.0.x/src/Rules/PHPUnit/AssertSameWithCountRule.php is there a reason for not having `AssertEqualsWithCountRule` so that `$this->assertEquals(45, count($actual));` would become `$this->assertCount(45, $actual);` I can make a pull request I just...