File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -138,13 +138,13 @@ jobs:
138
138
run : docker image pull kindest/node:v1.27.3@sha256:3966ac761ae0136263ffdb6cfd4db23ef8a83cba8a463690e98317add2c9ba72
139
139
140
140
- name : Setup E2E Tests
141
- if : ${{ inputs.enable-e2e-tests && !cancelled() && !failure() }}
141
+ if : ${{ runner.os == 'linux' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
142
142
run : |
143
143
npm link
144
144
./test/e2e/setup-e2e.sh
145
145
146
146
- name : Run E2E Tests
147
- if : ${{ inputs.enable-e2e-tests && !cancelled() && !failure() }}
147
+ if : ${{ runner.os == 'linux' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
148
148
run : npm run test-e2e
149
149
150
150
- name : Upload E2E Logs to GitHub
@@ -165,7 +165,7 @@ jobs:
165
165
166
166
- name : Publish E2E Coverage Report
167
167
uses : actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
168
- if : ${{ inputs.enable-e2e-tests && !cancelled() }}
168
+ if : ${{ runner.os == 'linux' && inputs.enable-e2e-tests && !cancelled() }}
169
169
with :
170
170
name : E2E Coverage Report
171
171
path : ' coverage/e2e'
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ describe('BaseCommand', () => {
48
48
await expect ( baseCmd . run ( 'INVALID_PROGRAM' ) ) . rejects . toThrowError ( )
49
49
} )
50
50
it ( 'should succeed during valid program check' , async ( ) => {
51
- await expect ( baseCmd . run ( 'date' ) ) . resolves . not . toBeNull ( )
52
- } , 10000 )
51
+ await expect ( baseCmd . run ( 'date' , true ) ) . resolves . not . toBeNull ( )
52
+ } )
53
53
} )
54
54
} )
You can’t perform that action at this time.
0 commit comments