@@ -11,7 +11,7 @@ describe('parser.ts', () => {
1111 jest . resetAllMocks ( )
1212 } )
1313
14- it ( 'test parseXmls' , async ( ) => {
14+ it ( 'parseXmls' , async ( ) => {
1515 const file1 = path . join ( __dirname , 'resource' , 'lint-results.xml' )
1616 const file2 = path . join ( __dirname , 'resource' , 'empty-results.xml' )
1717
@@ -36,7 +36,7 @@ describe('parser.ts', () => {
3636 ] )
3737 } )
3838
39- it ( 'test parseXmls and ignore warnings' , async ( ) => {
39+ it ( 'parseXmls and ignore warnings' , async ( ) => {
4040 const file1 = path . join ( __dirname , 'resource' , 'lint-results.xml' )
4141 const file2 = path . join ( __dirname , 'resource' , 'empty-results.xml' )
4242
@@ -53,7 +53,7 @@ describe('parser.ts', () => {
5353 ] )
5454 } )
5555
56- it ( 'test parseXml with issues' , async ( ) => {
56+ it ( 'parseXml with issues' , async ( ) => {
5757 const xml = `<?xml version="1.0" encoding="UTF-8"?>
5858 <issues format="6" by="lint 7.2.1">
5959 <issue
@@ -83,7 +83,7 @@ describe('parser.ts', () => {
8383 await expect ( parseXml ( xml , false ) ) . resolves . toEqual ( [ annotation ] )
8484 } )
8585
86- it ( 'test parseXml without issue' , async ( ) => {
86+ it ( 'parseXml without issue' , async ( ) => {
8787 const xml = `<?xml version="1.0" encoding="UTF-8"?>
8888 <issues format="6" by="lint 7.2.1">
8989 </issues>`
0 commit comments