Skip to content

Commit

Permalink
Update startTimeout in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Anatolii Bazko <[email protected]>
  • Loading branch information
tolusha committed Dec 26, 2022
1 parent 7bd982f commit 89a36a9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ describe('dwPlugins store', () => {
timeouts: {
inactivityTimeout: -1,
runTimeout: -1,
startTimeout: -1,
startTimeout: 300,
},
cheNamespace: 'eclipse-che',
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe('dwPlugins store', () => {
timeouts: {
inactivityTimeout: -1,
runTimeout: -1,
startTimeout: -1,
startTimeout: 300,
},
cheNamespace: 'eclipse-che',
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const unloadedState: State = {
timeouts: {
inactivityTimeout: -1,
runTimeout: -1,
startTimeout: -1,
startTimeout: 300,
},
cheNamespace: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const selectPvcStrategy = createSelector(

export const selectStartTimeout = createSelector(
selectState,
state => state.config.timeouts.startTimeout || 0,
state => state.config.timeouts.startTimeout,
);

export const selectServerConfigError = createSelector(selectState, state => state.error);
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class FakeStoreBuilder {
timeouts: {
inactivityTimeout: -1,
runTimeout: -1,
startTimeout: -1,
startTimeout: 300,
},
cheNamespace: '',
} as api.IServerConfig,
Expand Down

0 comments on commit 89a36a9

Please sign in to comment.