forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiWatching.unittest.js
68 lines (57 loc) · 1.5 KB
/
MultiWatching.unittest.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"use strict";
const Tapable = require("tapable").Tapable;
const SyncHook = require("tapable").SyncHook;
const MultiWatching = require("../lib/MultiWatching");
const createWatching = () => {
return {
invalidate: jest.fn(),
close: jest.fn()
};
};
const createCompiler = () => {
const compiler = {
hooks: {
watchClose: new SyncHook([])
}
};
Tapable.addCompatLayer(compiler);
return compiler;
};
describe("MultiWatching", () => {
let watchings;
let compiler;
let myMultiWatching;
beforeEach(() => {
watchings = [createWatching(), createWatching()];
compiler = createCompiler();
myMultiWatching = new MultiWatching(watchings, compiler);
});
describe("invalidate", () => {
beforeEach(() => {
myMultiWatching.invalidate();
});
it("invalidates each watching", () => {
expect(watchings[0].invalidate.mock.calls.length).toBe(1);
expect(watchings[1].invalidate.mock.calls.length).toBe(1);
});
});
describe("close", () => {
let callback;
const callClosedFinishedCallback = watching => {
watching.close.mock.calls[0][0]();
};
beforeEach(() => {
callback = jest.fn();
myMultiWatching.close(callback);
});
it("closes each watching", () => {
expect(watchings[0].close.mock.calls.length).toBe(1);
expect(watchings[1].close.mock.calls.length).toBe(1);
});
it("calls callback after each watching has closed", () => {
callClosedFinishedCallback(watchings[0]);
callClosedFinishedCallback(watchings[1]);
expect(callback.mock.calls.length).toBe(1);
});
});
});