👋 I noticed that my Codeception tests pass even if I expect a different type of error from psalm.
Steps To Reproduce
Write a gherkin test snippet and include Then I see these errors in the test. Expect a specific error such as | MissingFile | Cannot find file | when require_once file/that/doesn't/exist.php is analyzed.
An example is here: psalm/psalm-plugin-laravel@d69377b#diff-dc52f1aabf7e9388e148c112a4b349c1R32
Expected
- Test fails because
UnresolvableInclude was returned by psalm instead of the expected MissingFile
Actual