aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-02-24 22:45:47 +0900
committerGitHub <noreply@github.com>2019-02-24 22:45:47 +0900
commitdfeb7e75498384af5e24255ee0fe7f8af37ac489 (patch)
tree12094b3a72d20d07c4cb040c37849c4680fd222b /test
parent83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff)
parent80a4a347ec92f3e702075e448aba191ad3627cf6 (diff)
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'test')
-rw-r--r--test/background/domains/GlobalMark.test.js (renamed from test/background/domains/global-mark.test.js)2
-rw-r--r--test/background/infrastructures/MemoryStorage.test.js (renamed from test/background/infrastructures/memory-storage.test.js)2
-rw-r--r--test/background/repositories/Mark.test.js (renamed from test/background/repositories/mark.test.js)4
-rw-r--r--test/background/repositories/Version.js (renamed from test/background/repositories/version.js)2
-rw-r--r--test/shared/urls.test.js9
5 files changed, 5 insertions, 14 deletions
diff --git a/test/background/domains/global-mark.test.js b/test/background/domains/GlobalMark.test.js
index bdf1ea6..ed636e9 100644
--- a/test/background/domains/global-mark.test.js
+++ b/test/background/domains/GlobalMark.test.js
@@ -1,4 +1,4 @@
-import GlobalMark from 'background/domains/global-mark';
+import GlobalMark from 'background/domains/GlobalMark';
describe('background/domains/global-mark', () => {
describe('constructor and getter', () => {
diff --git a/test/background/infrastructures/memory-storage.test.js b/test/background/infrastructures/MemoryStorage.test.js
index 8871749..95d3780 100644
--- a/test/background/infrastructures/memory-storage.test.js
+++ b/test/background/infrastructures/MemoryStorage.test.js
@@ -1,4 +1,4 @@
-import MemoryStorage from 'background/infrastructures/memory-storage';
+import MemoryStorage from 'background/infrastructures/MemoryStorage';
describe("background/infrastructures/memory-storage", () => {
it('stores values', () => {
diff --git a/test/background/repositories/mark.test.js b/test/background/repositories/Mark.test.js
index 4f71f62..2a5b099 100644
--- a/test/background/repositories/mark.test.js
+++ b/test/background/repositories/Mark.test.js
@@ -1,5 +1,5 @@
-import MarkRepository from 'background/repositories/mark';
-import GlobalMark from 'background/domains/global-mark';
+import MarkRepository from 'background/repositories/MarkRepository';
+import GlobalMark from 'background/domains/GlobalMark';
describe('background/repositories/mark', () => {
let repository;
diff --git a/test/background/repositories/version.js b/test/background/repositories/Version.js
index 8510ae6..c7fa88b 100644
--- a/test/background/repositories/version.js
+++ b/test/background/repositories/Version.js
@@ -1,4 +1,4 @@
-import VersionRepository from 'background/repositories/version';
+import VersionRepository from 'background/repositories/Version';
describe("background/repositories/version", () => {
let versionRepository;
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/']);
- });
- });
});