create-medusa-app

This commit is contained in:
Danel Kungla
2025-07-07 13:59:41 +03:00
commit ddef587abf
28 changed files with 12821 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { medusaIntegrationTestRunner } from "@medusajs/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)
})
})
},
})