aboutsummaryrefslogtreecommitdiff
path: root/test/background
diff options
context:
space:
mode:
Diffstat (limited to 'test/background')
-rw-r--r--test/background/usecases/parsers.test.js26
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');
- });
- });
});