playwright-dagger-repro
No long description provided.
Installation
dagger install github.com/andrestone/dagger-network-issue-repro@52bcae272903b5675f34eed85e591fdb3efd6383
Entrypoint
Return Type
PlaywrightDaggerRepro
Example
dagger -m github.com/andrestone/dagger-network-issue-repro@52bcae272903b5675f34eed85e591fdb3efd6383 call \
func (m *MyModule) Example() *dagger.PlaywrightDaggerRepro {
return dag.
PlaywrightDaggerRepro()
}
@function
def example() -> dagger.PlaywrightDaggerRepro:
return (
dag.playwright_dagger_repro()
)
@func()
example(): PlaywrightDaggerRepro {
return dag
.playwrightDaggerRepro()
}
Types
PlaywrightDaggerRepro 🔗
container() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
Example
dagger -m github.com/andrestone/dagger-network-issue-repro@52bcae272903b5675f34eed85e591fdb3efd6383 call \
container --source DIR_PATH
func (m *MyModule) Example(source *dagger.Directory) *dagger.Container {
return dag.
PlaywrightDaggerRepro().
Container(source)
}
@function
def example(source: dagger.Directory) -> dagger.Container:
return (
dag.playwright_dagger_repro()
.container(source)
)
@func()
example(source: Directory): Container {
return dag
.playwrightDaggerRepro()
.container(source)
}
test() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
Example
dagger -m github.com/andrestone/dagger-network-issue-repro@52bcae272903b5675f34eed85e591fdb3efd6383 call \
test --source DIR_PATH
func (m *MyModule) Example(ctx context.Context, source *dagger.Directory) string {
return dag.
PlaywrightDaggerRepro().
Test(ctx, source)
}
@function
async def example(source: dagger.Directory) -> str:
return await (
dag.playwright_dagger_repro()
.test(source)
)
@func()
async example(source: Directory): Promise<string> {
return dag
.playwrightDaggerRepro()
.test(source)
}
ui() 🔗
Return Type
Service !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
Example
dagger -m github.com/andrestone/dagger-network-issue-repro@52bcae272903b5675f34eed85e591fdb3efd6383 call \
ui --source DIR_PATH
func (m *MyModule) Example(source *dagger.Directory) *dagger.Service {
return dag.
PlaywrightDaggerRepro().
Ui(source)
}
@function
def example(source: dagger.Directory) -> dagger.Service:
return (
dag.playwright_dagger_repro()
.ui(source)
)
@func()
example(source: Directory): Service {
return dag
.playwrightDaggerRepro()
.ui(source)
}