Skip to content

Commit 2e40ee8

Browse files
suppress tests log output
1 parent c21fb93 commit 2e40ee8

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

__tests__/auth.test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import io = require('@actions/io');
22
import fs = require('fs');
33
import path = require('path');
4+
import * as core from '@actions/core';
45
import os from 'os';
56

67
import * as auth from '../src/auth';
@@ -10,11 +11,14 @@ const settingsFile = path.join(m2Dir, auth.SETTINGS_FILE);
1011

1112
describe('auth tests', () => {
1213
let spyOSHomedir: jest.SpyInstance;
14+
let spyInfo: jest.SpyInstance;
1315

1416
beforeEach(async () => {
1517
await io.rmRF(m2Dir);
1618
spyOSHomedir = jest.spyOn(os, 'homedir');
1719
spyOSHomedir.mockReturnValue(__dirname);
20+
spyInfo = jest.spyOn(core, 'info');
21+
spyInfo.mockImplementation(() => null);
1822
}, 300000);
1923

2024
afterAll(async () => {

__tests__/cache.test.ts

+13
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ describe('dependency cache', () => {
1414
let workspace: string;
1515
let spyInfo: jest.SpyInstance<void, Parameters<typeof core.info>>;
1616
let spyWarning: jest.SpyInstance<void, Parameters<typeof core.warning>>;
17+
let spyDebug: jest.SpyInstance<void, Parameters<typeof core.debug>>;
18+
let spySaveState: jest.SpyInstance<void, Parameters<typeof core.saveState>>;
1719

1820
beforeEach(() => {
1921
workspace = mkdtempSync(join(tmpdir(), 'setup-java-cache-'));
@@ -38,7 +40,16 @@ describe('dependency cache', () => {
3840

3941
beforeEach(() => {
4042
spyInfo = jest.spyOn(core, 'info');
43+
spyInfo.mockImplementation(() => null);
44+
4145
spyWarning = jest.spyOn(core, 'warning');
46+
spyWarning.mockImplementation(() => null);
47+
48+
spyDebug = jest.spyOn(core, 'debug');
49+
spyDebug.mockImplementation(() => null);
50+
51+
spySaveState = jest.spyOn(core, 'saveState');
52+
spySaveState.mockImplementation(() => null);
4253
});
4354

4455
afterEach(() => {
@@ -58,6 +69,7 @@ describe('dependency cache', () => {
5869
spyCacheRestore = jest
5970
.spyOn(cache, 'restoreCache')
6071
.mockImplementation((paths: string[], primaryKey: string) => Promise.resolve(undefined));
72+
spyWarning.mockImplementation(() => null);
6173
});
6274

6375
it('throws error if unsupported package manager specified', () => {
@@ -117,6 +129,7 @@ describe('dependency cache', () => {
117129
spyCacheSave = jest
118130
.spyOn(cache, 'saveCache')
119131
.mockImplementation((paths: string[], key: string) => Promise.resolve(0));
132+
spyWarning.mockImplementation(() => null);
120133
});
121134

122135
it('throws error if unsupported package manager specified', () => {

0 commit comments

Comments
 (0)