Skip to content

Commit

Permalink
Update main.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 authored May 30, 2022
1 parent faba347 commit c80fd28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ test('returns the paths of the filtered files (input files, input source files)'
'__tests__/main.test.ts',
'__tests__/util.test.ts'
]
.map(fName => normalizeSeparators(path.join(GITHUB_WORKSPACE!, fName)))
.map(fName => normalizeSeparators(fName))
.join(process.env.INPUT_SEPARATOR)

// @ts-ignore
Expand Down Expand Up @@ -77,7 +77,7 @@ test('returns the paths of the filtered files (input files)', async () => {
'__tests__/util.test.ts',
'entrypoint.sh'
]
.map(fName => normalizeSeparators(path.join(GITHUB_WORKSPACE!, fName)))
.map(fName => normalizeSeparators(fName))
.join(process.env.INPUT_SEPARATOR)

// @ts-ignore
Expand All @@ -102,7 +102,7 @@ test('returns the paths of the filtered files (input source files)', async () =>
'HISTORY.md',
'README.md'
]
.map(fName => normalizeSeparators(path.join(GITHUB_WORKSPACE!, fName)))
.map(fName => normalizeSeparators(fName))
.join(process.env.INPUT_SEPARATOR)

// @ts-ignore
Expand All @@ -127,7 +127,7 @@ test('returns the paths of the filtered files in the paths-output-file', async (
'HISTORY.md',
'README.md'
]
.map(fName => normalizeSeparators(path.join(GITHUB_WORKSPACE!, fName)))
.map(fName => normalizeSeparators(fName))
.join(process.env.INPUT_SEPARATOR)

// @ts-ignore
Expand Down

0 comments on commit c80fd28

Please sign in to comment.