-
-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathTestCache.test.js
89 lines (74 loc) · 2.09 KB
/
TestCache.test.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/**
* @jest-environment node
*/
import path from 'path';
import webpack from 'webpack';
import del from 'del';
const fileSystemCacheDirectory = path.resolve(
__dirname,
'./outputs/cache/type-filesystem'
);
del.sync(fileSystemCacheDirectory);
describe('TestCache', () => {
it('should work', async () => {
if (webpack.version[0] !== '4') {
const casesDirectory = path.resolve(__dirname, 'cases');
const directoryForCase = path.resolve(casesDirectory, 'simple');
// eslint-disable-next-line import/no-dynamic-require, global-require
const webpackConfig = require(path.resolve(
directoryForCase,
'webpack.config.js'
));
const compiler1 = webpack({
...webpackConfig,
mode: 'development',
context: directoryForCase,
cache: {
type: 'filesystem',
cacheDirectory: fileSystemCacheDirectory,
idleTimeout: 0,
idleTimeoutForInitialStore: 0,
},
});
await new Promise((resolve, reject) => {
compiler1.run((error, stats) => {
if (error) {
reject(error);
return;
}
expect(stats.compilation.warnings).toHaveLength(0);
expect(stats.compilation.errors).toHaveLength(0);
compiler1.close(() => {
resolve();
});
});
});
const compiler2 = webpack({
...webpackConfig,
mode: 'development',
context: directoryForCase,
cache: {
type: 'filesystem',
cacheDirectory: fileSystemCacheDirectory,
idleTimeout: 0,
idleTimeoutForInitialStore: 0,
},
});
await new Promise((resolve, reject) => {
compiler2.run((error, stats) => {
if (error) {
reject(error);
return;
}
expect(stats.compilation.warnings).toHaveLength(0);
expect(stats.compilation.errors).toHaveLength(0);
compiler2.close(() => {
resolve();
});
});
});
} else {
expect(true).toBe(true);
}
});
});