diff --git a/tests/playwright-test/playwright-test-fixtures.ts b/tests/playwright-test/playwright-test-fixtures.ts index 26c7bb0a0a..507e707667 100644 --- a/tests/playwright-test/playwright-test-fixtures.ts +++ b/tests/playwright-test/playwright-test-fixtures.ts @@ -60,15 +60,6 @@ type Params = { [key: string]: string | number | boolean | string[] }; async function writeFiles(testInfo: TestInfo, files: Files, initial: boolean) { const baseDir = testInfo.outputPath(); - const hasConfig = Object.keys(files).some(name => name.includes('.config.')); - if (initial && !hasConfig) { - files = { - ...files, - 'playwright.config.ts': ` - module.exports = { projects: [ {} ] }; - `, - }; - } if (initial && !Object.keys(files).some(name => name.includes('package.json'))) { files = { ...files,