Skip to content

Commit

Permalink
fix(errors): enable all unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aussedatlo committed May 29, 2024
1 parent d2ad51c commit 0e7fe3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ledgerjs/packages/errors/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe("custom errors", () => {
expect(error.statusCode).toEqual(0x6d02);
});

test.only("TransportStatusError should be mapped to a LockedDeviceError on status code 0x5515", () => {
test("TransportStatusError should be mapped to a LockedDeviceError on status code 0x5515", () => {
const error = new TransportStatusError(StatusCodes.LOCKED_DEVICE);

expect(error.name).toEqual("LockedDeviceError");
Expand Down

0 comments on commit 0e7fe3b

Please sign in to comment.