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