Skip to content

Commit

Permalink
fix: removing /s from store url
Browse files Browse the repository at this point in the history
  • Loading branch information
jarndt-ltm committed Jan 10, 2022
1 parent 40e1b92 commit ccf364d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $ npm install -g @salesforce/commerce
$ sfdx COMMAND
running command...
$ sfdx (-v|--version|version)
@salesforce/commerce/234.0.14 darwin-x64 node-v14.3.0
@salesforce/commerce/234.0.15 darwin-x64 node-v14.3.0
$ sfdx --help [COMMAND]
USAGE
$ sfdx COMMAND
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/commerce",
"version": "234.0.14",
"version": "234.0.15",
"author": "Jonathan Arndt",
"bugs": "https://git.soma.salesforce.com/communities/commerce-on-lightning/issues",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/commerce/store/view/info.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('commerce:store:display', () => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
// eslint-disable-next-line @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-member-access
assert.equal(await storeViewInfo.getFullStoreURL(), 'https://hello:6101/test/s');
assert.equal(await storeViewInfo.getFullStoreURL(), 'https://hello:6101/test');
[c, c1, c2, d].forEach((k) => k.restore());
});
});

0 comments on commit ccf364d

Please sign in to comment.