We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 222b9c5 commit ab2dfc9Copy full SHA for ab2dfc9
test/spec/linkify/core/scanner-test.js
@@ -63,9 +63,9 @@ const tests = [
63
['co', [TLD], ['co']],
64
['com', [TLD], ['com']],
65
['comm', [DOMAIN], ['comm']],
66
- ['abc 123 DoReMi', [DOMAIN, WS, NUM, WS, DOMAIN], ['abc', ' ', '123', ' ', 'DoReMi']],
67
- ['abc 123 \n DoReMi', [DOMAIN, WS, NUM, WS, NL, WS, DOMAIN], ['abc', ' ', '123', ' ', '\n', ' ', 'DoReMi']],
68
- ['local', [TLD], ['local']],
+ ['abc 123 DoReMi', [TLD, WS, NUM, WS, DOMAIN], ['abc', ' ', '123', ' ', 'DoReMi']],
+ ['abc 123 \n DoReMi', [TLD, WS, NUM, WS, NL, WS, DOMAIN], ['abc', ' ', '123', ' ', '\n', ' ', 'DoReMi']],
+ ['local', [DOMAIN], ['local']],
69
['localhost', [LOCALHOST], ['localhost']],
70
['localhosts', [DOMAIN], ['localhosts']],
71
['500px', [DOMAIN], ['500px']],
0 commit comments