0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-15 21:22:43 +00:00

Merge branch 'master' into pr/2453

This commit is contained in:
Trevor Buckner
2022-11-10 21:56:49 -05:00
4 changed files with 29172 additions and 22622 deletions

View File

@@ -27,7 +27,7 @@ jobs:
# fallback to using the latest cache if no exact match is found # fallback to using the latest cache if no exact match is found
- v1-dependencies- - v1-dependencies-
- node/install-npm - run: sudo npm install -g npm@8.10.0
- node/install-packages: - node/install-packages:
app-dir: ~/homebrewery app-dir: ~/homebrewery
cache-path: node_modules cache-path: node_modules

17895
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -77,6 +77,7 @@
"mongoose": "^6.7.0", "mongoose": "^6.7.0",
"nanoid": "3.3.4", "nanoid": "3.3.4",
"nconf": "^0.12.0", "nconf": "^0.12.0",
"npm": "^8.10.0",
"react": "^16.14.0", "react": "^16.14.0",
"react-dom": "^16.14.0", "react-dom": "^16.14.0",
"react-frame-component": "4.1.3", "react-frame-component": "4.1.3",

View File

@@ -9,8 +9,8 @@ describe('Tests for static pages', ()=>{
return app.get('/').expect(200); return app.get('/').expect(200);
}); });
it('Home page v3 works', ()=>{ it('Home page legacy works', ()=>{
return app.get('/v3_preview').expect(200); return app.get('/legacy').expect(200);
}); });
it('Changelog page works', ()=>{ it('Changelog page works', ()=>{