Matt Smith

Results 4 comments of Matt Smith

That's what I ended up doing. Something like: In the test: ``` test.beforeEach(async ({ request, baseURL }) => { widget= new Widget(request, baseURL); }); ``` in the class: ``` constructor(protected...

@aoj2 I ran into this exact issue, the problem is you cannot re-use the apiRequestContext once it has been closed. I noticed this when I was trying to do the...

@aoj2 What i've done is just make a new context in a `beforeEach` hook (or also in a `beforeAll` hook if you have that). It's not as clean but it's...

Im running into the same problem. Using the %only option isn't really ideal because we have MULTIPLE table names, also I believe you need to include the schema.table_name even using...