Skip to content

Commit

Permalink
add eslint ignores and increase timeout for askar tests
Browse files Browse the repository at this point in the history
Signed-off-by: Ariel Gentile <gentilester@gmail.com>
  • Loading branch information
genaris committed Feb 6, 2023
1 parent b44647f commit c06f1ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/askar/src/wallet/__tests__/AskarWallet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,12 @@ describe.skip('Currently, all KeyTypes are supported by Askar natively', () => {
}
}

// eslint-disable-next-line @typescript-eslint/no-unused-vars
public async sign(options: SignOptions): Promise<Buffer> {
return new Buffer('signed')
}

// eslint-disable-next-line @typescript-eslint/no-unused-vars
public async verify(options: VerifyOptions): Promise<boolean> {
return true
}
Expand Down
2 changes: 1 addition & 1 deletion packages/askar/tests/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ try {
}

// FIXME: Remove when Askar JS Wrapper performance issues are solved
jest.setTimeout(60000)
jest.setTimeout(180000)

0 comments on commit c06f1ef

Please sign in to comment.