Skip to content

Commit

Permalink
feat: feature lifecycle with real store and db migration
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Apr 5, 2024
1 parent 07351ae commit 52cbb23
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ test('can insert and read lifecycle stages', async () => {
} as unknown as IUnleashConfig);
const featureName = 'testFeature';

async function emitMetricsEvent(environment: string) {
await eventBus.emit(CLIENT_METRICS, { featureName, environment });
function emitMetricsEvent(environment: string) {
eventBus.emit(CLIENT_METRICS, { featureName, environment });
}
function reachedStage(name: StageName) {
return new Promise((resolve) =>
Expand Down

0 comments on commit 52cbb23

Please sign in to comment.