aboutsummaryrefslogtreecommitdiff
path: root/test/background/repositories/Mark.test.ts
blob: bdee3b764133267b582a1f48414ecc5f98bcb929 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import MarkRepository from "../../../src/background/repositories/MarkRepository";

describe("background/repositories/mark", () => {
  let repository: MarkRepository;

  beforeEach(() => {
    repository = new MarkRepository();
  });

  it("get and set", async () => {
    const mark = { tabId: 1, url: "http://example.com", x: 10, y: 30 };

    await repository.setMark("A", mark);

    let got = (await repository.getMark("A"))!;
    expect(got.tabId).toEqual(1);
    expect(got.url).toEqual("http://example.com");
    expect(got.x).toEqual(10);
    expect(got.y).toEqual(30);

    got = (await repository.getMark("B"))!;
    expect(got).toBeUndefined;
  });
});