Files
criollo/integration-tests/http/health.spec.ts
Amritanshu 6e3216a0ff Added prettier and prettied the code.
Created and added the razorpay payment module
2025-02-16 04:37:30 +00:00

16 lines
389 B
TypeScript

import { medusaIntegrationTestRunner } from 'medusa-test-utils';
jest.setTimeout(60 * 1000);
medusaIntegrationTestRunner({
inApp: true,
env: {},
testSuite: ({ api }) => {
describe('Ping', () => {
it('ping the server health endpoint', async () => {
const response = await api.get('/health');
expect(response.status).toEqual(200);
});
});
},
});