aboutsummaryrefslogtreecommitdiff
path: root/test/background/repositories
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-12-22 10:42:48 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-12-22 10:48:39 +0900
commitda72c2ddd916d79d134662e3985b53a4ac78af7a (patch)
tree5367c48648e2018f55f12d847baba94559e10040 /test/background/repositories
parent029d5365e7d74e87375fccb8db097b7c2df3f7f4 (diff)
Fix lint rules on tests
Diffstat (limited to 'test/background/repositories')
-rw-r--r--test/background/repositories/Mark.test.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/background/repositories/Mark.test.ts b/test/background/repositories/Mark.test.ts
index 625f11d..ed1a68e 100644
--- a/test/background/repositories/Mark.test.ts
+++ b/test/background/repositories/Mark.test.ts
@@ -1,11 +1,10 @@
import MarkRepository from 'background/repositories/MarkRepository';
-import GlobalMark from 'background/domains/GlobalMark';
describe('background/repositories/mark', () => {
- let repository;
+ let repository: MarkRepository;
beforeEach(() => {
- repository = new MarkRepository;
+ repository = new MarkRepository();
});
it('get and set', async() => {