mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
#1017 adds early return toSnapshot test
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
{
|
||||
"key": " <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <h1>Snapshot<\/h1>\n <\/div>\n <\/div>\n <\/div>"
|
||||
}
|
||||
@ -103,6 +103,26 @@ test('pass with array', function () {
|
||||
])->toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('pass with `toSnapshot`', function () {
|
||||
TestSuite::getInstance()->snapshots->save(json_encode(['key' => $this->snapshotable], JSON_PRETTY_PRINT));
|
||||
|
||||
$object = new class($this->snapshotable)
|
||||
{
|
||||
public function __construct(protected string $snapshotable)
|
||||
{
|
||||
}
|
||||
|
||||
public function toSnapshot()
|
||||
{
|
||||
return json_encode([
|
||||
'key' => $this->snapshotable,
|
||||
], JSON_PRETTY_PRINT);
|
||||
}
|
||||
};
|
||||
|
||||
expect($object)->toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('failures', function () {
|
||||
TestSuite::getInstance()->snapshots->save($this->snapshotable);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user