summaryrefslogtreecommitdiff
path: root/test/mock-i18n.ts
blob: 9f5038f4ee5260cd33008ffa2f5c55aa07937372 (about) (plain)
1
2
3
4
5
jest.mock('i18n-js', () => {
  return {
    t: (key) => `${key}.test`,
  }
})