This does not work: ```ts const config: PlaywrightTestConfig = { globalSetup: 'global-setup.ts', }; ``` This works ```ts const config: PlaywrightTestConfig = { globalSetup: path.join(__dirname, 'global-setup.ts'), }; ```