blob: f2a7326710841e05856caa2984c77290a4a5d8bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { MarkRepositoryImpl } from "../../../src/content/repositories/MarkRepository";
import { expect } from "chai";
describe("MarkRepositoryImpl", () => {
it("save and load marks", () => {
const sut = new MarkRepositoryImpl();
sut.set("a", { x: 10, y: 20 });
expect(sut.get("a")).to.deep.equal({ x: 10, y: 20 });
expect(sut.get("b")).to.be.null;
});
});
|