Skip to content

Commit

Permalink
fix: all around improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
vladcos committed Dec 26, 2022
1 parent cab0c1c commit 7bbc054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/tasks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function addFileContent<T extends FSJetpack>(
}) as T
}

it('should work', async () => {
it('run full process', async () => {
const secondaryDirectoryOriginal =
testTemporaryDirectory.cwd('secondary-original')

Expand Down
2 changes: 1 addition & 1 deletion tests/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Options {
}
export async function waitUntilTrue(
expression: () => boolean,
{ checkInterval = 500, bailTimeout = 2000 }: Options = {},
{ checkInterval = 500, bailTimeout = 5000 }: Options = {},
): Promise<true> {
return new Promise((resolve, reject) => {
const tooLongInterval = setTimeout(() => {
Expand Down

0 comments on commit 7bbc054

Please sign in to comment.