Add a test to make sure HTTPS URLs aren't failing for Quick Copy
This commit is contained in:
parent
242581a270
commit
899e33c993
|
@ -5,10 +5,14 @@ describe("Zotero.QuickCopy", function() {
|
||||||
// TODO: These should set site-specific prefs and test the actual response against it,
|
// TODO: These should set site-specific prefs and test the actual response against it,
|
||||||
// but that will need to wait for 5.0. For now, just make sure they don't fail.
|
// but that will need to wait for 5.0. For now, just make sure they don't fail.
|
||||||
describe("#getFormatFromURL()", function () {
|
describe("#getFormatFromURL()", function () {
|
||||||
it("should handle a domain", function () {
|
it("should handle an HTTP URL", function () {
|
||||||
assert.deepEqual(Zotero.QuickCopy.getFormatFromURL('http://foo.com/'), quickCopyPref);
|
assert.deepEqual(Zotero.QuickCopy.getFormatFromURL('http://foo.com/'), quickCopyPref);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it("should handle an HTTPS URL", function () {
|
||||||
|
assert.deepEqual(Zotero.QuickCopy.getFormatFromURL('https://foo.com/'), quickCopyPref);
|
||||||
|
})
|
||||||
|
|
||||||
it("should handle a domain and path", function () {
|
it("should handle a domain and path", function () {
|
||||||
assert.deepEqual(Zotero.QuickCopy.getFormatFromURL('http://foo.com/bar'), quickCopyPref);
|
assert.deepEqual(Zotero.QuickCopy.getFormatFromURL('http://foo.com/bar'), quickCopyPref);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user