diff --git a/source/docs/v3/testing.blade.md b/source/docs/v3/testing.blade.md index 5fa142b..393eb1b 100644 --- a/source/docs/v3/testing.blade.md +++ b/source/docs/v3/testing.blade.md @@ -27,6 +27,8 @@ class TestCase // extends ... public function setUp(): void { + parent::setUp(); + if ($this->tenancy) { $this->initializeTenancy(); } @@ -57,4 +59,4 @@ class FooTest extends TestCase } ``` -Or you may want to create a separate TestCase class for tenant tests, for better organization. \ No newline at end of file +Or you may want to create a separate TestCase class for tenant tests, for better organization.