This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/packages/aws-component/__mocks__/@next-deploy/aws-cloudfront.ts

12 lines
301 B
TypeScript

export const mockCloudFront = jest.fn();
const cloudfront = jest.fn(() => {
const cloudFront = mockCloudFront;
cloudFront.init = () => {};
cloudFront.default = () => {};
cloudFront.context = {};
return cloudFront;
});
cloudfront.mockCloudFront = mockCloudFront;
export default cloudfront;