blob: 6ddd38d4b2790064b1d6e4d68394c706bd1ccd64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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;
});
});
|