Hi all, quick question, I see that in the provider...
# pactflow
n
Hi all, quick question, I see that in the provider repo here on line 40 it uses
- run: docker pull pactfoundation/pact-cli:latest
but I have been using a command that looks like this:
npx jest --testMatch '**/*.pact.test.ts'"
does it matter which one I use? So far npx has been fine for me
m
They do two different things. The first command is pulling in a docker CLI (to be used later), the second is running JS tests. I think you mean you’re using
npx
to execute the CLI? If so, that’s totally fine
🙌 1