FILE_PATTERNS: {
TEST_EXTENSIONS: readonly [
".spec.ts",
".spec.tsx",
".test.ts",
".test.tsx",
];
CONFIG_NAMES: readonly [
"playwright.config.ts",
"playwright.config.js",
"playwright.config.mts",
"playwright.config.mjs",
];
IGNORE_DIRS: readonly [
"node_modules",
"__snapshots__",
"__image_snapshots__",
".git",
"dist",
"build",
"coverage",
".next",
".nuxt",
".output",
".svelte-kit",
];
} = ...
类型声明
只读TEST_EXTENSIONS: readonly [".spec.ts", ".spec.tsx", ".test.ts", ".test.tsx"]
只读CONFIG_NAMES: readonly [
"playwright.config.ts",
"playwright.config.js",
"playwright.config.mts",
"playwright.config.mjs",
]
只读IGNORE_DIRS: readonly [
"node_modules",
"__snapshots__",
"__image_snapshots__",
".git",
"dist",
"build",
"coverage",
".next",
".nuxt",
".output",
".svelte-kit",
]