aboutsummaryrefslogtreecommitdiff
path: root/test/background/usecases
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-28 10:51:52 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-07-28 14:20:29 +0900
commitccdb0a2428bbdc56e8288442f844a4bb3b8f9a11 (patch)
treec1d653b3792917473bace600d12a071b35f6168c /test/background/usecases
parent66c23423f931bb66c59cd29cf9279a5de5d56535 (diff)
Clean old codes
Diffstat (limited to 'test/background/usecases')
-rw-r--r--test/background/usecases/parsers.test.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/background/usecases/parsers.test.js b/test/background/usecases/parsers.test.js
index fa0e757..a58c4a3 100644
--- a/test/background/usecases/parsers.test.js
+++ b/test/background/usecases/parsers.test.js
@@ -1,6 +1,6 @@
import * as parsers from 'background/usecases/parsers';
-describe("background/usecases/parsers", () => {
+describe("shared/commands/parsers", () => {
describe("#parsers.parseSetOption", () => {
it('parse set string', () => {
let [key, value] = parsers.parseSetOption('encoding=utf-8', { encoding: 'string' });
@@ -65,10 +65,9 @@ describe("background/usecases/parsers", () => {
.to.equal('https://yahoo.com/search?q=C%2B%2BCLI');
});
- it('user default search engine', () => {
+ it('user default search engine', () => {
expect(parsers.normalizeUrl('apple banana', config))
.to.equal('https://google.com/search?q=apple%20banana');
});
});
});
-