Playwright testing with Clerk not working in nextjs application
Unanswered
Southern rough shrimp posted this in #help-forum
Southern rough shrimpOP
I've set up Playwright and that works fine. As soon as I follow this tutorial https://clerk.com/docs/testing/playwright/overview I get the following error:
This is my global.setup.ts:
Error: Playwright Test did not expect test() to be called here.
Most common reasons include:
- You are calling test() in a configuration file.
- You are calling test() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at Object.<anonymous> (C:\Users\icond\Documents\diss\emalias.app\apps\web\src\tests\global.setup.ts:5:6)
This is my global.setup.ts:
import { clerkSetup } from "@clerk/testing/playwright";
import { test as setup } from "@playwright/test";
setup("clerk setup", async () => {
await clerkSetup();
});