feat: add test checklist items shared constants

This commit is contained in:
Kirill
2026-05-24 16:13:44 +05:00
parent 53f02e1782
commit 82f11e0492
2 changed files with 312 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
export interface TestChecklistItem {
key: string;
section: string;
action: string;
expectedResult: string;
}
export declare const TEST_CHECKLIST_ITEMS: readonly TestChecklistItem[];