@@ -26,7 +26,7 @@ Here are some examples of how to use some common flags:
2626| Mode | Flags Available |
2727| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2828| ` record ` | ` -c, --command ` , ` --config-path ` , ` --containerName ` , ` -d, --delay ` , ` -n, --networkName ` , ` --passThroughPorts ` , ` -p, --path ` , ` --proxyport ` , ` --debug ` |
29- | ` test ` | ` --apiTimeout ` , ` -c, --command ` , ` --config-path ` , ` --containerName ` , ` -d, --delay ` , ` --mongoPassword ` , ` -n, --net, --networkName ` , ` --passThroughPorts ` , ` -p, --path ` , ` --proxyport ` , ` -t, --testsets ` , ` --debug ` , ` -g, --generateTestReport ` , ` --removeUnusedMocks ` , ` --coverage ` , ` --goCoverage ` , ` --ignoreOrdering ` |
29+ | ` test ` | ` --apiTimeout ` , ` -c, --command ` , ` --config-path ` , ` --containerName ` , ` -d, --delay ` , ` --mongoPassword ` , ` -n, --net, --networkName ` , ` --passThroughPorts ` , ` -p, --path ` , ` --proxyport ` , ` -t, --testsets ` , ` --debug ` , ` -g, --generateTestReport ` , ` --removeUnusedMocks ` , ` --coverage ` , ` --goCoverage ` , ` --ignoreOrdering ` , ` --disable-line-coverage ` |
3030| ` gen ` | ` --sourceFilePath ` , ` --testFilePath ` ,` --coverageReportPath ` ,` --testCommand ` ,` --coverageFormat ` ,` --expectedCoverage ` ,` --maxIterations ` ,` --testDir ` ,` --llmBaseUrl ` ,` --model ` ,` --llmApiVersion ` |
3131| ` normailze ` | ` -p, --path ` , ` --test-run ` , ` --tests ` |
3232| ` rerecord ` | ` --test-sets ` , ` -t ` |
@@ -211,6 +211,12 @@ keploy test [flags]
211211
212212- ` --skip-coverage ` - skip code coverage computation while running the test cases
213213
214+ - ` --disable-line-coverage ` - skip line by line code coverage but display the total coverage.
215+
216+ ``` bash
217+ keploy test -c " node src/app.js" --delay 10 --disable-line-coverage
218+ ```
219+
214220- ` --jacoco-agent-path ` - Only applicable for test coverage for Java projects. You can override the jacoco agent jar by providing its path
215221
216222## [ gen] ( #gen )
0 commit comments