Support global marks which select a tab
This commit is contained in:
parent
6e6e306275
commit
003742ec51
11 changed files with 179 additions and 4 deletions
10
test/background/domains/global-mark.test.js
Normal file
10
test/background/domains/global-mark.test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import GlobalMark from 'background/domains/global-mark';
|
||||
|
||||
describe("background/domains/global-mark", () => {
|
||||
describe("constructor and getter", () => {
|
||||
let mark = new GlobalMark(1, 10, 30);
|
||||
expect(mark.tabId).to.equal(1);
|
||||
expect(mark.x).to.equal(10);
|
||||
expect(mark.y).to.equal(30);
|
||||
});
|
||||
});
|
|
@ -1,8 +1,6 @@
|
|||
import MemoryStorage from 'background/infrastructures/memory-storage';
|
||||
|
||||
describe("background/infrastructures/memory-storage", () => {
|
||||
let versionRepository;
|
||||
|
||||
it('stores values', () => {
|
||||
let cache = new MemoryStorage();
|
||||
cache.set('number', 123);
|
||||
|
|
23
test/background/repositories/mark.test.js
Normal file
23
test/background/repositories/mark.test.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
import MarkRepository from 'background/repositories/mark';
|
||||
import GlobalMark from 'background/domains/global-mark';
|
||||
|
||||
describe("background/repositories/version", () => {
|
||||
let repository;
|
||||
|
||||
beforeEach(() => {
|
||||
repository = new MarkRepository;
|
||||
});
|
||||
|
||||
it('get and set', async() => {
|
||||
let mark = new GlobalMark(1, 10, 30);
|
||||
|
||||
repository.setMark('A', mark);
|
||||
|
||||
let got = await repository.getMark('A');
|
||||
expect(got).to.be.a('object');
|
||||
expect(got.tabId).to.equal(1);
|
||||
|
||||
got = await repository.getMark('B');
|
||||
expect(got).to.be.undefined;
|
||||
});
|
||||
});
|
Reference in a new issue