Skip to content

Commit

Permalink
chore: add longer timeout for issues.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarpl committed Apr 12, 2023
1 parent 74a8df6 commit 29f7bc4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/internal-tests/src/__tests__/issues.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ const fsStat = promisify(fs.stat)

// const fsStat = promisify(fs.stat)

// this test can be a bit slower in CI sometimes
jest.setTimeout(10000)

describe('Handle unhappy paths', () => {
let env: TestEnviromnent

Expand All @@ -40,7 +43,7 @@ describe('Handle unhappy paths', () => {
env.reset()
})

test.only('Wait for non-existing local file', async () => {
test('Wait for non-existing local file', async () => {
fs.__mockSetDirectory('/sources/source0/')
fs.__mockSetDirectory('/targets/target0')
addCopyFileExpectation(
Expand Down

0 comments on commit 29f7bc4

Please sign in to comment.