aboutsummaryrefslogtreecommitdiff
path: root/test/background/repositories/Mark.test.js
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/background/repositories/Mark.test.js
parent83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff)
parent80a4a347ec92f3e702075e448aba191ad3627cf6 (diff)
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'test/background/repositories/Mark.test.js')
-rw-r--r--test/background/repositories/Mark.test.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/background/repositories/Mark.test.js b/test/background/repositories/Mark.test.js
new file mode 100644
index 0000000..2a5b099
--- /dev/null
+++ b/test/background/repositories/Mark.test.js
@@ -0,0 +1,26 @@
+import MarkRepository from 'background/repositories/MarkRepository';
+import GlobalMark from 'background/domains/GlobalMark';
+
+describe('background/repositories/mark', () => {
+ let repository;
+
+ beforeEach(() => {
+ repository = new MarkRepository;
+ });
+
+ it('get and set', async() => {
+ let mark = new GlobalMark(1, 'http://example.com', 10, 30);
+
+ repository.setMark('A', mark);
+
+ let got = await repository.getMark('A');
+ expect(got).to.be.a('object');
+ expect(got.tabId).to.equal(1);
+ expect(got.url).to.equal('http://example.com');
+ expect(got.x).to.equal(10);
+ expect(got.y).to.equal(30);
+
+ got = await repository.getMark('B');
+ expect(got).to.be.undefined;
+ });
+});