backend-manager 5.11.1 → 5.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,6 +38,19 @@ module.exports = {
38
38
  },
39
39
  },
40
40
 
41
+ {
42
+ name: 'isURL-rejects-colon-prefixed-text-and-non-http-schemes',
43
+ async run({ assert }) {
44
+ // "AI:" parses as a URL scheme via new URL() — these are text seeds,
45
+ // not URLs, and must NOT be fetched (the fetch fails and the seed is
46
+ // silently lost)
47
+ assert.equal(isURL('AI: the future of work'), false);
48
+ assert.equal(isURL('Growth: 10 tactics for creators'), false);
49
+ assert.equal(isURL('mailto:someone@example.com'), false);
50
+ assert.equal(isURL('ftp://example.com/file'), false);
51
+ },
52
+ },
53
+
41
54
  {
42
55
  name: 'isURL-rejects-empty-and-null',
43
56
  async run({ assert }) {