Skip to content

Commit 5315f07

Browse files
committed
Disable mocks and revert recent test changes
1 parent b988288 commit 5315f07

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ jobs:
6969
run: |
7070
scripts/vader-run-tests.sh --test units --cicd > /dev/null
7171
72-
- name: Test mocks
73-
run: |
74-
scripts/vader-run-tests.sh --test mocks --cicd > /dev/null
72+
# - name: Test mocks
73+
# run: |
74+
# scripts/vader-run-tests.sh --test mocks --cicd > /dev/null
7575

7676

7777
##

tests/mocks/autoload_proompter.vader

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Execute (proompter#SendPromptToChat -- Uses default channel callback when stream
102102

103103
sleep 100m
104104
finally
105-
if type(state.channel) != v:t_none && get(ch_info(state.channel), 'status', v:null) != 'closed'
105+
if ch_info(state.channel).status != 'closed'
106106
call ch_close(state.channel)
107107
endif
108108
endtry
@@ -186,7 +186,7 @@ Execute (proompter#SendPromptToChat -- Uses default channel callback when non-st
186186

187187
sleep 100m
188188
finally
189-
if type(state.channel) != v:t_none && get(ch_info(state.channel), 'status', v:null) != 'closed'
189+
if ch_info(state.channel).status != 'closed'
190190
call ch_close(state.channel)
191191
endif
192192
endtry
@@ -295,7 +295,7 @@ Execute (proompter#SendPromptToChat -- Appends to buffer via example channel cal
295295

296296
sleep 100m
297297
finally
298-
if type(state.channel) != v:t_none && get(ch_info(state.channel), 'status', v:null) != 'closed'
298+
if ch_info(state.channel).status != 'closed'
299299
call ch_close(state.channel)
300300
endif
301301
endtry

0 commit comments

Comments
 (0)