diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-02-24 22:45:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-24 22:45:47 +0900 |
commit | dfeb7e75498384af5e24255ee0fe7f8af37ac489 (patch) | |
tree | 12094b3a72d20d07c4cb040c37849c4680fd222b /test/shared/urls.test.js | |
parent | 83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff) | |
parent | 80a4a347ec92f3e702075e448aba191ad3627cf6 (diff) |
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'test/shared/urls.test.js')
-rw-r--r-- | test/shared/urls.test.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/shared/urls.test.js b/test/shared/urls.test.js index f004b3d..f2950b6 100644 --- a/test/shared/urls.test.js +++ b/test/shared/urls.test.js @@ -44,14 +44,5 @@ describe("shared/commands/parsers", () => { .to.equal('http://google.com'); }); }); - - describe('#homepageUrls', () => { - it('split urls', () => { - expect(parsers.homepageUrls('https://google.com/')) - .to.deep.equal(['https://google.com/']); - expect(parsers.homepageUrls('yahoo.com|https://i-beam.org/')) - .to.deep.equal(['http://yahoo.com', 'https://i-beam.org/']); - }); - }); }); |