Wait for test data to be processed before running the test
This commit is contained in:
parent
40d19a5d06
commit
ef7281716a
|
@ -1,4 +1,5 @@
|
|||
<script>
|
||||
import { tick } from "svelte"
|
||||
import {
|
||||
ModalContent,
|
||||
TextArea,
|
||||
|
@ -110,6 +111,8 @@
|
|||
}
|
||||
|
||||
const testAutomation = async () => {
|
||||
// Ensure $memoTestData rectiveness is processed
|
||||
await tick()
|
||||
try {
|
||||
await automationStore.actions.test($selectedAutomation, $memoTestData)
|
||||
$automationStore.showTestPanel = true
|
||||
|
|
Loading…
Reference in New Issue