tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/borgo/tests@3b34b6046c591ed34222b7c1c155613799d3739c
Entrypoint
Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/borgo/tests@3b34b6046c591ed34222b7c1c155613799d3739c call \
func (m *myModule) example() *Tests {
return dag.
Tests()
}
@function
def example() -> dag.Tests:
return (
dag.tests()
)
@func()
example(): Tests {
return dag
.tests()
}
Types
Tests 🔗
all() 🔗
All executes all tests.
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/borgo/tests@3b34b6046c591ed34222b7c1c155613799d3739c call \
all
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
All(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.all()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.all()
}
compile() 🔗
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/borgo/tests@3b34b6046c591ed34222b7c1c155613799d3739c call \
compile
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
Compile(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.compile()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.compile()
}