Skip to content

Commit

Permalink
fix: add explanation for SDK_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Feb 4, 2025
1 parent 9ddaa06 commit 0ea5b4e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jest.mock('@airgap/beacon-core', () => {
Logger: jest.fn().mockImplementation(() => ({
error: jest.fn(),
})),
SDK_VERSION: '1.0.0'
// we cannot refer to the actual `SDK_VERSION` because
// `jest.mock()` is not allowed to reference any out-of-scope variables.
SDK_VERSION: '4.5.0'
}
})

Expand Down

0 comments on commit 0ea5b4e

Please sign in to comment.