Closed
Description
This does not work:
const config: PlaywrightTestConfig = {
globalSetup: 'global-setup.ts',
};
This works
const config: PlaywrightTestConfig = {
globalSetup: path.join(__dirname, 'global-setup.ts'),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment