This adds Test Anything Protocol (TAP) support to VS Code
- Read/Watch TAP files and display the results in the Test Explorer
- Run TAP tests in the Test Explorer
Your tests must output TAP (Test Anything Protocol) to be parsed by this extension.
This extension contributes the following settings:
-
tap-harness.mode
: Set the mode that should be used for getting tests. Options arefiles
,producer
. Default isfiles
. -
tap-harness.testFiles.globs
: When infiles
mode. An array of globs to be used to find tap files. Default is["**/*.tap"]
. -
tap-harness.tapProducer.executable
: When inproducer
mode. The executable to run to get the tap output. Default istap
. -
tap-harness.tapProducer.arguments
: When inproducer
mode. The arguments to pass to the executable. Default is[]
.
None at the moment.
Users appreciate release notes as you update your extension.