mirror of
https://github.com/pestphp/pest.git
synced 2026-06-08 04:12:12 +02:00
lint
This commit is contained in:
@ -122,13 +122,13 @@ test('not failures', function () {
|
|||||||
})->throws(ExpectationFailedException::class);
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
test('multiple snapshot expectations', function () {
|
test('multiple snapshot expectations', function () {
|
||||||
expect("foo bar 1")->toMatchSnapshot();
|
expect('foo bar 1')->toMatchSnapshot();
|
||||||
|
|
||||||
expect("foo bar 2")->toMatchSnapshot();
|
expect('foo bar 2')->toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('multiple snapshot expectations with datasets', function () {
|
test('multiple snapshot expectations with datasets', function () {
|
||||||
expect("foo bar 1")->toMatchSnapshot();
|
expect('foo bar 1')->toMatchSnapshot();
|
||||||
|
|
||||||
expect("foo bar 2")->toMatchSnapshot();
|
expect('foo bar 2')->toMatchSnapshot();
|
||||||
})->with([1, 'foo', 'bar', 'baz']);
|
})->with([1, 'foo', 'bar', 'baz']);
|
||||||
|
|||||||
Reference in New Issue
Block a user