File tree 2 files changed +4
-2
lines changed
e2e/spring-shell-e2e-tests
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ export const nativeCommand = cliPath;
18
18
export const jarOptions = [ '-jar' , jarPath ] ;
19
19
export const waitForExpectDefaultTimeout = 30000 ;
20
20
export const waitForExpectDefaultInterval = 2000 ;
21
- export const testTimeout = 100000 ;
21
+ export const testTimeout = 120000 ;
Original file line number Diff line number Diff line change @@ -26,10 +26,12 @@ describe('flow commands', () => {
26
26
const flowConditionalField2SkipsFields1 = async ( cli : Cli ) => {
27
27
cli . run ( ) ;
28
28
29
+ // windows on gh actions may take quite a bit of time to start
30
+ // so use long timeout
29
31
await waitForExpect ( async ( ) => {
30
32
const screen = cli . screen ( ) ;
31
33
expect ( screen ) . toEqual ( expect . arrayContaining ( [ expect . stringContaining ( 'Single1' ) ] ) ) ;
32
- } ) ;
34
+ } , 60000 ) ;
33
35
34
36
await cli . keyDown ( ) ;
35
37
await waitForExpect ( async ( ) => {
You can’t perform that action at this time.
0 commit comments