Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/registry/tests@9ee6739db1b1cc4c806ed9389ecd534bf9f5705a

Entrypoint

Return Type
Tests
Example
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}

Types

Tests 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			All(ctx)
}

test() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Test(ctx)
}