forked from NagRock/ts-mockito
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinstance.spec.ts
34 lines (26 loc) · 977 Bytes
/
instance.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import {instance, mock, nextTick} from "../src/ts-mockito";
import {Foo} from "./utils/Foo";
describe("instance", () => {
describe("getting instance of mock", () => {
let mockedFoo: Foo;
it("returns always same instance", () => {
// given
mockedFoo = mock(Foo);
// when
const firstFooInstance = instance(mockedFoo);
const secondFooInstance = instance(mockedFoo);
// then
expect(firstFooInstance).toBe(secondFooInstance);
});
});
xdescribe("forgetting to get instance of mock", () => {
let mockedFoo: Foo;
it("throws an exception if not taking instance before calling a method", async () => {
// given
mockedFoo = mock(Foo);
mockedFoo.getBar();
await nextTick();
// Expected to fail with "Unmatched call to getBar, did you forget to use instance()?"
});
});
});