Skip to content

Commit

Permalink
skip _JS tests when it would require running on Ledger
Browse files Browse the repository at this point in the history
  • Loading branch information
mkv-vcm authored and janmazak committed Jan 12, 2022
1 parent d860504 commit d3e17c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ export function describeRejects(name: string, testList: any) {

for (const {testname, tx, additionalWitnessPaths, signingMode, rejectReason } of testList) {
it(testname, async() => {
if (rejectReason === InvalidDataReason.LEDGER_POLICY) {
return
}
const response = ada.signTransaction({
tx,
signingMode,
Expand Down

0 comments on commit d3e17c8

Please sign in to comment.