Got the same problem here. It's kinda annoying.
Did you find a solution, @mdrobbins ?
I'm using pest and running a test that I expect to fail because of an exception (think TDD), when I run that test in the PhpStorm test runner, it only shows "The test did not perform any assertions". If I run the test from the command line, I'll see the error that I expect. For example, with this code:
it('should fail', function() {
$test = FakeModel::factory()->create();
});
Running in PhpStorm results in 1 failed, ignored, "This test did not perform any assertions".
Running from the pest command-line results in 1 failed, "Class "FakeModel" not found" as expected.
This is a newer project with pest 2.5.3. I've got an older project with pest 1.22.0 and running the test in PhpStorm works as expected.
Any ideas about why I'm not seeing these errors in PhpStorm?
Please or to participate in this conversation.