resolve conflicts

This commit is contained in:
ogerly 2023-01-17 13:07:49 +01:00
parent ba59364d9c
commit 7829785799
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,7 @@ describe('ContributionForm', () => {
const mocks = {
$t: jest.fn((t) => t),
$d: jest.fn((d) => d),
$n: jest.fn((n) => n),
$store: {
state: {
creation: ['1000', '1000', '1000'],

View File

@ -9,10 +9,11 @@ describe('InputAmount', () => {
const mocks = {
$t: jest.fn((t) => t),
$n: jest.fn((n) => n),
$i18n: {
locale: jest.fn(() => 'en'),
},
$n: jest.fn((n) => String(n)),
// $n: jest.fn((n) => String(n)),
$route: {
params: {},
},