Skip to content

Commit

Permalink
Merge pull request #275 from alkem-io/develop
Browse files Browse the repository at this point in the history
Release: Fixes
  • Loading branch information
hero101 authored Dec 14, 2023
2 parents 336ded7 + e8f392e commit f33d3b6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions service/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alkemio-notifications",
"version": "0.15.0",
"version": "0.15.1",
"description": "Alkemio notifications service",
"author": "Alkemio Foundation",
"private": false,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AlkemioClient } from '@alkemio/client-lib';
import { AlkemioClient, PlatformFeatureFlagName } from '@alkemio/client-lib';
import { Test } from '@nestjs/testing';
import { AlkemioClientAdapterProvider } from './alkemio.client.adapter.module';
import * as challengeAdminsData from '@test/data/challenge.admins.json';
Expand Down Expand Up @@ -53,19 +53,19 @@ describe('AlkemioAdapter', () => {
it('Should return true', async () => {
jest.spyOn(alkemioClient, 'featureFlags').mockResolvedValue([
{
name: 'ssi',
name: PlatformFeatureFlagName.Ssi,
enabled: false,
},
{
name: 'communications',
name: PlatformFeatureFlagName.Communications,
enabled: true,
},
{
name: 'subscriptions',
name: PlatformFeatureFlagName.Subscriptions,
enabled: false,
},
{
name: 'notifications',
name: PlatformFeatureFlagName.Notifications,
enabled: true,
},
]);
Expand All @@ -76,19 +76,19 @@ describe('AlkemioAdapter', () => {
it('Should return false', async () => {
jest.spyOn(alkemioClient, 'featureFlags').mockResolvedValue([
{
name: 'ssi',
name: PlatformFeatureFlagName.Ssi,
enabled: false,
},
{
name: 'communications',
name: PlatformFeatureFlagName.Communications,
enabled: true,
},
{
name: 'subscriptions',
name: PlatformFeatureFlagName.Subscriptions,
enabled: false,
},
{
name: 'notifications',
name: PlatformFeatureFlagName.Notifications,
enabled: false,
},
]);
Expand Down

0 comments on commit f33d3b6

Please sign in to comment.