diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-29 00:04:24 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-29 00:04:24 +0900 |
commit | af90ef59566210fa8715816d639ae1025f2aa2fb (patch) | |
tree | 0c66e88229b11c9b154772a6a93dbb6def0d6dcf /test/background/usecases/parsers.test.js | |
parent | ed2bd7d75ee1e7aa1db7d03c3f908c740ded1983 (diff) | |
parent | 09c5247dbadb468a764eef308634503484d398c5 (diff) |
Merge pull request #441 from ueokande/search-on-paste
Search on paste
Diffstat (limited to 'test/background/usecases/parsers.test.js')
-rw-r--r-- | test/background/usecases/parsers.test.js | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/background/usecases/parsers.test.js b/test/background/usecases/parsers.test.js index a58c4a3..17b034b 100644 --- a/test/background/usecases/parsers.test.js +++ b/test/background/usecases/parsers.test.js @@ -44,30 +44,4 @@ describe("shared/commands/parsers", () => { expect(() => parsers.parseSetOption('smoothscroll', { smoothscroll: 'number' })).to.throw(Error, 'Invalid'); }) }); - - describe('#normalizeUrl', () => { - const config = { - default: 'google', - engines: { - google: 'https://google.com/search?q={}', - yahoo: 'https://yahoo.com/search?q={}', - } - }; - - it('convertes search url', () => { - expect(parsers.normalizeUrl('google apple', config)) - .to.equal('https://google.com/search?q=apple'); - expect(parsers.normalizeUrl('yahoo apple', config)) - .to.equal('https://yahoo.com/search?q=apple'); - expect(parsers.normalizeUrl('google apple banana', config)) - .to.equal('https://google.com/search?q=apple%20banana'); - expect(parsers.normalizeUrl('yahoo C++CLI', config)) - .to.equal('https://yahoo.com/search?q=C%2B%2BCLI'); - }); - - it('user default search engine', () => { - expect(parsers.normalizeUrl('apple banana', config)) - .to.equal('https://google.com/search?q=apple%20banana'); - }); - }); }); |