I'm trying to run integration tests with Playwrigh...
# development
n
I'm trying to run integration tests with Playwright pytest with a command like this:
Copy code
PANTS_CONCURRENT=True pants --tag="integration_test" test site: -- --video on
It works successfully, so I think a video was created and saved, any idea where that folder would be? Thanks!
c
if it’s saved relative to the working directory it would likely end up in the sandbox.. to confirm, run with
--keep-sandboxes=always
that way you can inspect (and also re-run) from within the sandbox using the
__run.sh
script in there which mimics the command invoked by pants.
n
great thanks for the tip!
👍 1