Replies: 1 comment 1 reply
-
I see the // Pest.php
dd(\Pest\Plugin::$callables); I've tried registering the plugin myself but the // Pest.php
\Pest\Plugin::uses(\Pest\Plugins\Environment::class); // ExampleTest.php
test('example', function () {
expect(true)->toBeTrue();
});
test('example with only', function () {
expect(true)->toBeTrue();
})->only(); Which Plugins are supposed to be loaded by default and how do you get the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What happened to the
--ci
option to prevent->only()
from impacting continuous integration environments?It seems to have disappeared from the docs around the time V2 came out but there is no mention of it in the Upgrade Guide.
It's disappearance caused some issues for one of my projects. Is there a new preferred way to prevent
only()
from impacting CI envs (aside from not checking them in)?Beta Was this translation helpful? Give feedback.
All reactions