@@ -11,7 +11,7 @@ describe("setup-Kcov", () => {
11
11
return
12
12
}
13
13
14
- it ( "should setup Kcov v40" , async ( ) => {
14
+ it ( "should setup Kcov v40 via downloading the binaries " , async ( ) => {
15
15
const directory = await setupTmpDir ( "kcov-v40" )
16
16
const { binDir } = ( await setupKcov ( "40-binary" , directory , "" ) ) as InstallationInfo
17
17
// the prebuild binary only works on ubuntu 20.04
@@ -23,14 +23,14 @@ describe("setup-Kcov", () => {
23
23
await cleanupTmpDir ( "kcov-v40" )
24
24
} )
25
25
26
- it ( "should setup Kcov v40" , async ( ) => {
26
+ it ( "should build and setup Kcov v40" , async ( ) => {
27
27
const directory = await setupTmpDir ( "kcov-v40" )
28
28
const { binDir } = ( await setupKcov ( "40" , directory , "" ) ) as InstallationInfo
29
29
await testBin ( "kcov" , [ "--version" ] , binDir )
30
30
await cleanupTmpDir ( "kcov-v40" )
31
31
} )
32
32
33
- it ( "should setup Kcov v39" , async ( ) => {
33
+ it ( "should build and setup Kcov v39" , async ( ) => {
34
34
const directory = await setupTmpDir ( "kcov-v39" )
35
35
const { binDir } = ( await setupKcov ( "39" , directory , "" ) ) as InstallationInfo
36
36
await testBin ( "kcov" , [ "--version" ] , binDir )
@@ -45,7 +45,7 @@ describe("setup-Kcov", () => {
45
45
// await cleanupTmpDir("kcov-v39")
46
46
// })
47
47
48
- it ( "should setup Kcov v38" , async ( ) => {
48
+ it ( "should build and setup Kcov v38" , async ( ) => {
49
49
try {
50
50
const directory2 = await setupTmpDir ( "kcov-v38" )
51
51
0 commit comments