forked from dxatscale/sfpowerscripts
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sfppackage): fix handling of URL-encoded whitespace in repository…
… URL This updates git-parse-url to version 16.0.0.
- Loading branch information
1 parent
ed6e67f
commit 7c9412e
Showing
3 changed files
with
21 additions
and
15 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,7 @@ describe('validateArtifactsSourceRepository', () => { | |
sfpPackageInquirer.validateArtifactsSourceRepository(); | ||
}); | ||
|
||
// TODO: re-enable once https://github.com/flxbl-io/sfp/issues/137 is fixed | ||
it.skip.failing('should accept a good repository SSH URL with a URL-encoded space', async () => { | ||
it('should accept a good repository SSH URL with a URL-encoded space', async () => { | ||
const repositoryUrl = '[email protected]:flxbl-io/sfp%20test.git'; | ||
|
||
let sfpPackage: SfpPackage = new SfpPackage(); | ||
|