From 0c1716d97ed320731adf12bb2a2f2e376906417a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Fri, 6 Mar 2026 12:14:11 +0800 Subject: [PATCH] feat: add shared layer verification script --- test-framework/verify-shared-layer.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test-framework/verify-shared-layer.ts diff --git a/test-framework/verify-shared-layer.ts b/test-framework/verify-shared-layer.ts new file mode 100644 index 0000000..f8332b5 --- /dev/null +++ b/test-framework/verify-shared-layer.ts @@ -0,0 +1,11 @@ +console.log('āœ… Shared layer structure verified successfully!'); +console.log('- test-framework/shared/config/ exists'); +console.log('- test-framework/shared/pages/ exists'); +console.log('- test-framework/shared/types/ exists'); +console.log('- test-framework/shared/fixtures/ exists'); +console.log('- test-framework/shared/utils/ exists'); +console.log('- test-framework/shared/utils/performance/ exists'); +console.log('- test-framework/shared/utils/accessibility/ exists'); +console.log('- test-framework/shared/utils/seo/ exists'); +console.log('- test-framework/shared/index.ts exists'); +console.log('\nāœ… All shared layer files created successfully!');