import { WalletsService } from './wallets.service'; require('../../tests/mocks/msw/index.js'); jest.setTimeout(10000); describe('Wallets service tests', () => { const service = WalletsService.getInstance(); test('Find customer', async () => { const customer = await service.findCustomer('luciano.moreira@sanar.com'); expect(customer.user_id).not.toBeNull(); }); });