I run all of our Apidog tests using the following command line:
apidog run --access-token [REDACTED] -f [folderId] -r html --out-json-failures-separated out.json
(Trying to run the tests using the UI results in an out of heap space error.)
The output is this:
(node:24380) [DEP0044] DeprecationWarning: The util.isArray
API is deprecated. Please use Array.isArray()
instead.
(Use node --trace-deprecation ...
to show where the warning was created)
error: Error: Invalid test data.
We have nearly 6K assertions spread across around 1K tests. Is there an easy way to identify the test(s) that have Invalid test data?
Thanks!