Skip to content

Commit

Permalink
fixup! chore: upgrade react and react-redux packages
Browse files Browse the repository at this point in the history
  • Loading branch information
akurinnoy committed Nov 7, 2024
1 parent 8eca1bd commit 9ae3e5c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions packages/dashboard-backend/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ module.exports = {
setupFilesAfterEnv: ['./jest.setup.js'],
coverageThreshold: {
global: {
statements: 81,
branches: 78,
functions: 78,
lines: 81,
statements: 86,
branches: 80,
functions: 86,
lines: 86,
},
},
};
8 changes: 4 additions & 4 deletions packages/dashboard-frontend/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ module.exports = {
],
coverageThreshold: {
global: {
statements: 90,
branches: 86,
functions: 85,
lines: 90,
statements: 92,
branches: 88,
functions: 87,
lines: 92,
},
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jest
.mockImplementation(() => jest.fn());
jest.spyOn(devfileRegistriesActionCreators, 'requestDevfile').mockImplementation(() => jest.fn());
jest.spyOn(workspacesActionCreators, 'requestWorkspaces').mockImplementation(() => jest.fn());
jest.mock('@/store/Workspaces/DevWorkspaces', () => ({
...jest.requireActual('@/store/Workspaces/DevWorkspaces'),
jest.mock('@/store/Workspaces/devWorkspaces', () => ({
...jest.requireActual('@/store/Workspaces/devWorkspaces'),
selectDevWorkspacesResourceVersion: jest.fn(),
}));
jest.mock('@/store/Events', () => ({
Expand Down

0 comments on commit 9ae3e5c

Please sign in to comment.