Different behavior between phpunit and pest when using depends
Hi, I don't know if this "bug" (?) is related to this plugin or to Pest itself...
When I run a single test with PHPStorm, I noticed that there is different behavior between PHPUnit and Pest when using @depends.
PHPUnit: correct behavior ✅

Pest: wrong behavior ❌

It seems the pest plugin doesn't start dependent test.
Hmm interesting, I think it might be a pest bug, but I'll hear the others 🤔
I have moved this bug reported on the IntelliJ plugin to the pest repository as for me it looks like a pest issue.
If this is in fact something extra I need to do in the plugin, we can move it back 👍
I think it's about the naming.
Can you try to use :
->depends('test foo')
It worked for me when i used it like
->depends('it foo')
Not working for me.
Edit: It works but the message is missleading: This test depends on "P\Tests\Feature\MyPestTest::it first" which does not exist. It should be something like: This test depends on "P\Tests\Feature\MyPestTest::it first" which failed.
Edit2: Or better like in PHPUnit: This test depends on "%s" to pass.
Cosing due of lack of activity.