This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/test/background/repositories/mark.test.js
2018-10-12 14:59:45 +09:00

26 lines
700 B
JavaScript

import MarkRepository from 'background/repositories/mark';
import GlobalMark from 'background/domains/global-mark';
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;
});
});