Cam Kemshal-Bell

Results 13 comments of Cam Kemshal-Bell

Is there something similar for Vue?

> Looks like `__pest_evaluable_` prefix isn't prepended to test names anymore. > > That's why the filter `--filter=/^(P\)?Tests\NewTest::it\sthis\sis\sa\stest(\swith\s(data\sset\s"."|(.))(\s/\s(data\sset\s"."|(.)))*(\s#\d+)?)?$/` doesn't work in Pest 3.x-dev, but the filter `--filter=/^(P\)?Tests\NewTest::__pest_evaluable_it\sthis\sis\sa\stest(\swith\s(data\sset\s"."|(.))(\s/\s(data\sset\s"."|(.)))*(\s#\d+)?)?$/` works just fine...

I am having the same issue, I would like to use this but it does not work! @GooGee

Is this coming anytime soon?

@taylorotwell I took your meaning as wanting me add a more granular translation line for the added parameters, however based on the existing implementation of this Dimension rule, without a...

Tested this validation rule / message combo ```php $this->validate( rules: [ 'images.*' => [ Rule::dimensions() ->maxHeight(4000) ->maxWidth(4000) ->ratioBetween(min: 1 / 2, max: 2 / 5), ], messages: [ 'images.*.dimensions' =>...

Open to any changes you think would be needed to facilitate this feature. Also, I have written up some documentation to cover this, which I would like an opinion on...

> My view is I'd exercise caution in reusing > assertClassHasAttribute > > Some of these method names match up to deprecated phpunit method names, and may cause confusion down...

It's certainly nullable, Check here => https://github.com/pestphp/pest-plugin-arch/blob/0a27e55a270cfe73d8cb70551b91002ee2cb64b0/src/Autoload.php#L18 Also in my PhpStorm: You probably need to composer update, or restart PhpStorm. It's always a good idea to check the code in...

> @CamKem Ah, my bad. Switched branches but didn't ran `composer install` again. The other issue still persists though. You are correct, the TestCall needs to be updated to `@mixin`...