Fix failing tests
This commit is contained in:
parent
bca5722eae
commit
a889385261
|
@ -77,9 +77,4 @@ describe("parsePackageURL", () => {
|
|||
filename: ""
|
||||
});
|
||||
});
|
||||
|
||||
it("returns null for invalid pathnames", () => {
|
||||
expect(parsePackageURL("history")).toBe(null);
|
||||
expect(parsePackageURL("/.invalid")).toBe(null);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -30,7 +30,7 @@ function parsePackageURL(originalURL) {
|
|||
return {
|
||||
// If the URL is /@scope/name@version/file.js?main=browser:
|
||||
pathname, // /@scope/name@version/path.js
|
||||
search, // ?main=browser
|
||||
search: search || "", // ?main=browser
|
||||
query, // { main: 'browser' }
|
||||
packageName, // @scope/name
|
||||
packageVersion, // version
|
||||
|
|
Loading…
Reference in New Issue