Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/kustomize/tests@a11cc1b5f8800701305af2244998325ceb8cd863

Entrypoint

Return Type
Tests
Example
func (m *myModule) example() *dagger.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)
}

build() 🔗

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

edit() 🔗

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