Make config required.
This commit is contained in:
parent
d62be2629c
commit
00b02b1762
|
@ -244,6 +244,6 @@ class AutomationBuilder extends BaseStepBuilder {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createAutomationBuilder(config?: TestConfiguration) {
|
export function createAutomationBuilder(config: TestConfiguration) {
|
||||||
return new AutomationBuilder(config)
|
return new AutomationBuilder(config)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue