diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 17dae0e6..0f2ae9a4 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -2,6 +2,7 @@ namespace Tests\Feature; +use App\Models\Order; use Tests\TestCase; class ExampleTest extends TestCase @@ -13,7 +14,8 @@ class ExampleTest extends TestCase */ public function test_example() { - + $list = Order::where('wx_share->status', 'Y')->get(); + dump($list->count()); $this->assertTrue(true); } }