** What
- Allow auto-loaded Medusa files to export a config object.
- Currently supports isDisabled to control loading.
- new instance `FeatureFlag` exported by `@medusajs/framework/utils`
- `feature-flags` is now a supported folder for medusa projects, modules, providers and plugins. They will be loaded and added to `FeatureFlag`
** Why
- Enables conditional loading of routes, migrations, jobs, subscribers, workflows, and other files based on feature flags.
```ts
// /src/feature-flags
import { FlagSettings } from "@medusajs/framework/feature-flags"
const CustomFeatureFlag: FlagSettings = {
key: "custom_feature",
default_val: false,
env_key: "FF_MY_CUSTOM_FEATURE",
description: "Enable xyz",
}
export default CustomFeatureFlag
```
```ts
// /src/modules/my-custom-module/migration/Migration20250822135845.ts
import { FeatureFlag } from "@medusajs/framework/utils"
export class Migration20250822135845 extends Migration {
override async up(){ }
override async down(){ }
}
defineFileConfig({
isDisabled: () => !FeatureFlag.isFeatureEnabled("custom_feature")
})
```
58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
import { medusaIntegrationTestRunner } from "@medusajs/test-utils"
|
|
import { ICurrencyModuleService, IStoreModuleService } from "@medusajs/types"
|
|
import { Modules, remoteQueryObjectFromString } from "@medusajs/utils"
|
|
|
|
jest.setTimeout(50000)
|
|
|
|
const env = {}
|
|
|
|
medusaIntegrationTestRunner({
|
|
env,
|
|
testSuite: ({ getContainer }) => {
|
|
describe("Link: Store Currency", () => {
|
|
let appContainer
|
|
let storeModuleService: IStoreModuleService
|
|
let currencyModuleService: ICurrencyModuleService
|
|
let remoteQuery
|
|
|
|
beforeAll(async () => {
|
|
appContainer = getContainer()
|
|
storeModuleService = appContainer.resolve(Modules.STORE)
|
|
currencyModuleService = appContainer.resolve(Modules.CURRENCY)
|
|
remoteQuery = appContainer.resolve("remoteQuery")
|
|
})
|
|
|
|
it("should query store and default currency with remote query", async () => {
|
|
const store = await storeModuleService.createStores({
|
|
name: "Store",
|
|
supported_currencies: [{ currency_code: "usd", is_default: true }],
|
|
})
|
|
|
|
const query = remoteQueryObjectFromString({
|
|
entryPoint: "store",
|
|
fields: [
|
|
"id",
|
|
"supported_currencies.*",
|
|
"supported_currencies.currency.*",
|
|
],
|
|
})
|
|
const stores = await remoteQuery(query)
|
|
|
|
expect(stores).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
id: store.id,
|
|
supported_currencies: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
currency: expect.objectContaining({ code: "usd" }),
|
|
currency_code: "usd",
|
|
}),
|
|
]),
|
|
}),
|
|
])
|
|
)
|
|
})
|
|
})
|
|
},
|
|
})
|