Commit a3fd6a1f by Jacob Baker-Kretzmar

Retrieve props from inside page object

1 parent 732a62e0
Showing with 1 additions and 1 deletions
......@@ -16,7 +16,7 @@ abstract class TestCase extends BaseTestCase
parent::setUp();
TestResponse::macro('props', function ($key = null) {
$props = json_decode(json_encode($this->original->getData()['props']), JSON_OBJECT_AS_ARRAY);
$props = json_decode(json_encode($this->original->getData()['page']['props']), JSON_OBJECT_AS_ARRAY);
if ($key) {
return Arr::get($props, $key);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!