-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.test.js
69 lines (63 loc) · 2.23 KB
/
index.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
jest.mock('./package.json', () => ({
name: 'testpkg2',
collective: {url: 'testurl'}
}), {virtual: true});
describe('test all the things', () => {
const env = global.process.env;
const console = global.console;
beforeEach(() => {
global.console = {log: jest.fn(), warn: global.console.warn};
});
afterEach(() => {
global.process.env = env;
global.console.log.mockReset();
global.console = console;
jest.resetModules();
});
describe('outputs the correct values', () => {
it('when called without args', () =>{
expect(global.console.log).not.toHaveBeenCalled();
require('./index');
expect(global.console.log).toHaveBeenCalledTimes(3);
expect(global.console.log).toHaveBeenNthCalledWith(1,
`\u001b[96m\u001b[1mThank you for using testpkg2!\u001b[96m\u001b[1m`
);
expect(global.console.log).toHaveBeenNthCalledWith(3,
`> \u001b[94mtesturl/donate\u001b[0m\n`
);
});
[0, false].forEach(falsy => {
it(`when Disable is set to ${falsy}`, () => {
global.process.env = {DISABLE_OPENCOLLECTIVE: falsy};
expect(global.console.log).not.toHaveBeenCalled();
require('./index');
expect(global.console.log).toHaveBeenCalledTimes(3);
});
});
['notice', 'http', 'timing', 'info', 'verbose', 'silly'].forEach(log => {
it(`when config_loglevel is set to ${log}`, () => {
global.process.env = {npm_config_loglevel: log}
expect(global.console.log).not.toHaveBeenCalled();
require('./index');
expect(global.console.log).toHaveBeenCalledTimes(3);
});
});
});
describe('does not show output', () => {
[1, true].forEach(truthy => {
it(`when Disable is set to ${truthy}`, () => {
global.process.env = {DISABLE_OPENCOLLECTIVE: truthy};
expect(global.console.log).not.toHaveBeenCalled();
require('./index');
expect(global.console.log).not.toHaveBeenCalled();
});
});
['warn', 'error', 'silent'].forEach(log => {
it(`when npm_config_loglevel is set to ${log}`, () => {
global.process.env = {npm_config_loglevel: log}
require('./index');
expect(global.console.log).not.toHaveBeenCalled();
});
});
});
});