From 901de1de2ed2aefbe6e899f1679bacd4e74c1eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 02:31:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E5=B9=B3=E5=8F=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=9524h=E6=89=B9=E9=87=8F=E8=BF=90=E8=90=A5=E9=97=AD?= =?UTF-8?q?=E7=8E=AF=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...hSynced24hAndBatchActivated24hPairTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBatchSynced24hAndBatchActivated24hPairTest.php diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBatchSynced24hAndBatchActivated24hPairTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBatchSynced24hAndBatchActivated24hPairTest.php new file mode 100644 index 0000000..2e2805e --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBatchSynced24hAndBatchActivated24hPairTest.php @@ -0,0 +1,32 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_quick_filters_should_keep_batch_synced_24h_and_batch_activated_24h_pair(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-quickfilter-batch-synced-24h[\s\S]*?近24小时批量同步[\s\S]*?po-quickfilter-batch-activated-24h[\s\S]*?近24小时批量生效/u', $html); + } +}