You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I was directed to this repo by @crynobone for an output issue I noticed in Laravel Dusk, and we think the issue actually lies in this repo. See laravel/dusk#1146.
Essentially, if I do $this->assertStringContainsString('foo', 'bar', 'My custom message.'); in a Dusk test (clean Laravel install and Dusk install), the "My custom message" is missing from the output. However, if I do $this->assertSame('foo', 'bar', 'My custom message.'); the "My custom message" is present in the output.
Hi, I was directed to this repo by @crynobone for an output issue I noticed in Laravel Dusk, and we think the issue actually lies in this repo. See laravel/dusk#1146.
Essentially, if I do
$this->assertStringContainsString('foo', 'bar', 'My custom message.');
in a Dusk test (clean Laravel install and Dusk install), the "My custom message" is missing from the output. However, if I do$this->assertSame('foo', 'bar', 'My custom message.');
the "My custom message" is present in the output.$this->assertSame('foo', 'bar', 'My custom message.');
$this->assertStringContainsString('foo', 'bar', 'My custom message.');
The text was updated successfully, but these errors were encountered: