// MOCK FILE ESM BIAR JEST GA PARSE jest.mock('../app/static/prefix.js', () => ({ default: {}, })); // MOCK MINIO BIAR GA CONNECT jest.mock('minio', () => ({ Client: jest.fn(() => ({})), })); test('load backend', () => { require('../index'); expect(true).toBe(true); });