Documentation ¶
Overview ¶
Aggregator is a reporter used by the Ginkgo CLI to aggregate and present parallel test output as one coherent stream. You shouldn't need to use this in your code. To run tests in parallel:
ginkgo -nodes=N
where N is the number of nodes you desire.
To disable streaming mode and, instead, have the test output blobbed onto screen when all the parallel nodes complete:
ginkgo -nodes=N -stream=false
Index ¶
- type Aggregator
- func (aggregator *Aggregator) ExampleDidComplete(exampleSummary *types.ExampleSummary)
- func (aggregator *Aggregator) ExampleWillRun(exampleSummary *types.ExampleSummary)
- func (aggregator *Aggregator) SpecSuiteDidEnd(summary *types.SuiteSummary)
- func (aggregator *Aggregator) SpecSuiteWillBegin(config config.GinkgoConfigType, summary *types.SuiteSummary)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Aggregator ¶
type Aggregator struct {
// contains filtered or unexported fields
}
func NewAggregator ¶
func NewAggregator(nodeCount int, result chan bool, config config.DefaultReporterConfigType, stenographer stenographer.Stenographer) *Aggregator
func (*Aggregator) ExampleDidComplete ¶
func (aggregator *Aggregator) ExampleDidComplete(exampleSummary *types.ExampleSummary)
func (*Aggregator) ExampleWillRun ¶
func (aggregator *Aggregator) ExampleWillRun(exampleSummary *types.ExampleSummary)
func (*Aggregator) SpecSuiteDidEnd ¶
func (aggregator *Aggregator) SpecSuiteDidEnd(summary *types.SuiteSummary)
func (*Aggregator) SpecSuiteWillBegin ¶
func (aggregator *Aggregator) SpecSuiteWillBegin(config config.GinkgoConfigType, summary *types.SuiteSummary)
Click to show internal directories.
Click to hide internal directories.