Support global marks which select a tab

This commit is contained in:
Shin'ya Ueoka 2018-10-12 10:14:33 +09:00
parent 6e6e306275
commit 003742ec51
11 changed files with 179 additions and 4 deletions

View 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);
});
});