@@ -651,14 +651,14 @@ This package also provides a CLI tool for running your Featurevisor project's te
651651See: https://featurevisor.com/docs/testing/
652652
653653```
654- $ vendor/bin/featurevisor test --projectDirectoryPath="path/to/your/featurevisor/project"
654+ $ vendor/bin/featurevisor test --projectDirectoryPath="/absolute/ path/to/your/featurevisor/project"
655655```
656656
657657Additional options that are available:
658658
659659```
660660$ vendor/bin/featurevisor test \
661- --projectDirectoryPath="path/to/your/featurevisor/project" \
661+ --projectDirectoryPath="/absolute/ path/to/your/featurevisor/project" \
662662 --quiet|verbose \
663663 --onlyFailures \
664664 --keyPattern="myFeatureKey" \
@@ -669,13 +669,30 @@ $ vendor/bin/featurevisor test \
669669
670670See: https://featurevisor.com/docs/cli/#benchmarking
671671
672- @TODO
672+ ```
673+ $ vendor/bin/featurevisor benchmark \
674+ --projectDirectoryPath="/absolute/path/to/your/featurevisor/project" \
675+ --environment="production" \
676+ --feature="myFeatureKey" \
677+ --context='{"country": "nl"}' \
678+ --n=1000
679+ ```
673680
674681### Assess distribution
675682
676683See: https://featurevisor.com/docs/cli/#assess-distribution
677684
678- @TODO
685+ ```
686+ $ vendor/bin/featurevisor assess-distribution \
687+ --projectDirectoryPath="/absolute/path/to/your/featurevisor/project" \
688+ --environment=production \
689+ --feature=foo \
690+ --variation \
691+ --context='{"country": "nl"}' \
692+ --populateUuid=userId \
693+ --populateUuid=deviceId \
694+ --n=1000
695+ ```
679696
680697## Development of this package
681698
0 commit comments