Skip to content

Commit 87edda4

Browse files
authored
Fix syntax errors and typo
1 parent f993df5 commit 87edda4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5579,7 +5579,7 @@ Describe("flaky tests", FlakeAttempts(3), func() {
55795579
...
55805580
})
55815581
5582-
It("is _really_ flaky", FlakeAttempts(5) func() {
5582+
It("is _really_ flaky", FlakeAttempts(5), func() {
55835583
...
55845584
})
55855585
@@ -5608,7 +5608,7 @@ Describe("repeated specs", MustPassRepeatedly(3), func() {
56085608
...
56095609
})
56105610
5611-
It("is repeated even more", MustPassRepeatedly(5) func() {
5611+
It("is repeated even more", MustPassRepeatedly(5), func() {
56125612
...
56135613
})
56145614
@@ -5807,7 +5807,7 @@ The columns are:
58075807
- Pending (bool): True, if pending. (Conforms to the rules in [Pending Specs](#pending-specs).)
58085808
- Labels (string): If labels are assigned to nodes then will be shown as double quoted comma separated values. (Conforms to the rules in [Spec Labels](#spec-labels).)
58095809
5810-
You can set a different output format with the `-format` flag. Accepted formats are `csv`, `indent`, and `json`. The `ident` format is like `csv`, but uses indentation to show the nesting of containers and specs. Both the `csv` and `json` formats can be read by another program, e.g., an editor plugin that displays a tree view of Ginkgo tests in a file, or presents a menu for the user to quickly navigate to a container or spec.
5810+
You can set a different output format with the `-format` flag. Accepted formats are `csv`, `indent`, and `json`. The `indent` format is like `csv`, but uses indentation to show the nesting of containers and specs. Both the `csv` and `json` formats can be read by another program, e.g., an editor plugin that displays a tree view of Ginkgo tests in a file, or presents a menu for the user to quickly navigate to a container or spec.
58115811
58125812
`ginkgo outline` is intended for integration with third-party libraries and applications - however it has an important limitation. Since parses the go syntax tree it cannot identify specs that are dynamically generated. Nor does it capture run-time concerns such as which specs will be skipped by a given set of filters or the order in which specs will run. If you want a quick overview of such things you can use `ginkgo -v --dry-run` instead. If you want finer-grained control over the suite preview, you should use [`PreviewSpecs`](#previewing-specs).
58135813

0 commit comments

Comments
 (0)