File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ import nock from 'nock';
44import * as path from 'path' ;
55
66import * as setupTools from './setup-tools' ;
7+ import { silenceDebugOutput } from './testing-utils' ;
78import * as util from './util' ;
89
10+ silenceDebugOutput ( test ) ;
11+
912test ( 'download codeql bundle cache' , async t => {
1013
1114 await util . withTmpDir ( async tmpDir => {
Original file line number Diff line number Diff line change 11import test from 'ava' ;
22import * as fs from 'fs' ;
33
4+ import { silenceDebugOutput } from './testing-utils' ;
45import * as util from './util' ;
56
7+ silenceDebugOutput ( test ) ;
8+
69test ( 'getToolNames' , t => {
710 const input = fs . readFileSync ( __dirname + '/../src/testdata/tool-names.sarif' , 'utf8' ) ;
811 const toolNames = util . getToolNames ( input ) ;
You can’t perform that action at this time.
0 commit comments