-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
index.test.ts
46 lines (40 loc) · 1.16 KB
/
index.test.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
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {interopRequireDefault} from 'jest-util';
let NODE_ENV: string;
let BABEL_ENV: string;
beforeEach(() => {
NODE_ENV = process.env.NODE_ENV;
process.env.NODE_ENV = 'test';
BABEL_ENV = process.env.BABEL_ENV;
process.env.BABEL_ENV = 'test';
});
afterEach(() => {
process.env.NODE_ENV = NODE_ENV;
process.env.BABEL_ENV = BABEL_ENV;
});
test('creation of a cache key', () => {
const createCacheKeyFunction = interopRequireDefault(
require('../index'),
).default;
const createCacheKey = createCacheKeyFunction([], ['value']);
const hashA = createCacheKey('test', 'test.js', null, {
config: {},
instrument: false,
});
const hashB = createCacheKey('test code;', 'test.js', null, {
config: {},
instrument: false,
});
const hashC = createCacheKey('test', 'test.js', null, {
config: {},
instrument: true,
});
expect(hashA).toHaveLength(32);
expect(hashA).not.toEqual(hashB);
expect(hashA).not.toEqual(hashC);
});