diff options
Diffstat (limited to 'test/background/repositories/Mark.test.ts')
-rw-r--r-- | test/background/repositories/Mark.test.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/background/repositories/Mark.test.ts b/test/background/repositories/Mark.test.ts new file mode 100644 index 0000000..167e512 --- /dev/null +++ b/test/background/repositories/Mark.test.ts @@ -0,0 +1,25 @@ +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 = { tabId: 1, url: 'http://example.com', x: 10, y: 30 }; + + repository.setMark('A', mark); + + let got = await repository.getMark('A'); + 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; + }); +}); |