Skip to content

Commit

Permalink
Merge pull request #1645 from monocle/upgrade
Browse files Browse the repository at this point in the history
Initial dependency upgrades and associated fixes
  • Loading branch information
KentShikama authored Jan 16, 2023
2 parents 497433a + a112aaf commit 11323ca
Show file tree
Hide file tree
Showing 50 changed files with 47,632 additions and 11,080 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
command: sh -c "cd /src/frontend && npm install && npm start"
depends_on:
- expungeservice
image: node:13.13.0-alpine
image: node:18.13-bullseye
ports:
- "3000:3000"
volumes:
Expand Down
50,375 changes: 39,409 additions & 10,966 deletions src/frontend/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"lint-staged": "^8.2.1",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"prettier": "2.0.5",
"react": "^16.12.0",
"react-dev-utils": "10.1.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^2.0.0",
"react-scripts": "3.3.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^16.11.0",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"reselect": "^4.0.0",
"sass": "^1.57.1",
"tachyons": "^4.11.1",
"typescript": "3.7.2"
"typescript": "^4.9.4"
},
"scripts": {
"start": "react-scripts start",
Expand Down
16 changes: 16 additions & 0 deletions src/frontend/src/components/About/About.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from "react";
import { BrowserRouter } from "react-router-dom";
import renderer from "react-test-renderer";

import About from "./";

it("renders correctly", () => {
const tree = renderer
.create(
<BrowserRouter>
<About />
</BrowserRouter>
)
.toJSON();
expect(tree).toMatchSnapshot();
});
Loading

0 comments on commit 11323ca

Please sign in to comment.