Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions frontend/src/admin/pages/flow/FlowLive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ function retryTest() {

function markTestPassed() {
flow.setLiveTestPassed(true);
goToStream();
}

function goToStream() {
Expand Down Expand Up @@ -362,12 +363,6 @@ onUnmounted(() => {
</div>
</div>

<!-- Continue after pass -->
<div v-if="flow.liveTestPassed.value" class="test-passed-banner">
<span>✓ Stream test passed</span>
<button class="btn-primary" @click="goToStream">Continue to Stream →</button>
</div>

<!-- Dev-only: skip test entirely -->
<button v-if="isDev && !flow.liveTestPassed.value" class="btn-dev-skip" @click="markTestPassed">
🛠 Skip Test (dev)
Expand Down Expand Up @@ -581,19 +576,6 @@ onUnmounted(() => {
flex-wrap: wrap;
}

.test-passed-banner {
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(34, 197, 94, 0.1);
border: 1px solid rgba(34, 197, 94, 0.3);
border-radius: var(--radius-lg);
padding: var(--spacing-md) var(--spacing-lg);
color: #22c55e;
font-weight: var(--font-weight-bold);
gap: var(--spacing-md);
}

/* ─── Buttons ─── */
.btn-primary {
background: var(--color-primary);
Expand Down
Loading