Skip to content

Commit

Permalink
#519: MapStore must not rely on the workspace prefix inside the style…
Browse files Browse the repository at this point in the history
… names returned by GetCapabilities (#533)
  • Loading branch information
allyoucanmap authored Oct 14, 2021
1 parent a894302 commit 110e42b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ describe('gnsave reducer', () => {
it('should test savingResource', () => {
const state = gnsave({}, savingResource());
expect(state).toEqual({
saving: true
saving: true,
error: undefined,
success: undefined
});
});
it('should test savingResource', () => {
const state = gnsave({}, saveDirectContent());
expect(state).toEqual({
saving: true
saving: true,
error: undefined,
success: undefined
});
});
it('should test saveSuccess', () => {
Expand Down
3 changes: 2 additions & 1 deletion geonode_mapstore_client/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"author": "GeoSolutions",
"license": "BSD-2-Clause",
"devDependencies": {
"@mapstore/project": "1.0.7"
"@mapstore/project": "1.0.7",
"webpack-cli": "4.9.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.1",
Expand Down

0 comments on commit 110e42b

Please sign in to comment.