aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-11-26 11:33:14 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-11-26 11:33:14 +0100
commit175d4a81870e638a72dd7e9e688277af71c1ed7e (patch)
treea4cad58f5af04178999c2b7001d21471e8b2c048 /client
parent514575491c501a17034118b1b0db1583f77f8fbe (diff)
Add link to cloud doc for vespa test
Diffstat (limited to 'client')
-rw-r--r--client/go/cmd/test.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/client/go/cmd/test.go b/client/go/cmd/test.go
index d6fdc9d2e41..98a64d8caa6 100644
--- a/client/go/cmd/test.go
+++ b/client/go/cmd/test.go
@@ -27,16 +27,15 @@ func init() {
rootCmd.AddCommand(testCmd)
}
-// TODO: add link to test doc at cloud.vespa.ai
var testCmd = &cobra.Command{
Use: "test [tests directory or test file]",
Short: "Run a test suite, or a single test",
Long: `Run a test suite, or a single test
-Runs all JSON test files in the specified directory, or the single JSON
-test file specified.
+Runs all JSON test files in the specified directory (the working
+directory by default), or the single JSON test file specified.
-If no directory or file is specified, the working directory is used instead.`,
+See https://cloud.vespa.ai/en/reference/testing.html for details.`,
Example: `$ vespa test src/test/application/tests/system-test
$ vespa test src/test/application/tests/system-test/feed-and-query.json`,
Args: cobra.MaximumNArgs(1),