Skip to content

Commit

Permalink
More configuratin fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion committed Sep 25, 2024
1 parent 3c70a56 commit 55d9b6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ describe('automatic environment attributes', () => {

describe('addApplicationInfo', () => {
test('add id, version, name, versionName', async () => {
config = new Configuration({
config = new ConfigurationImpl({
applicationInfo: {
id: 'com.from-config.ld',
version: '2.2.2',
Expand Down Expand Up @@ -431,7 +431,7 @@ describe('automatic environment attributes', () => {
info.platformData = jest
.fn()
.mockReturnValueOnce({ ld_application: { version: null, locale: '' } });
config = new Configuration({ applicationInfo: { version: '1.2.3' } });
config = new ConfigurationImpl({ applicationInfo: { version: '1.2.3' } });
const ldApplication = await addApplicationInfo(mockPlatform, config);

expect(ldApplication).toBeUndefined();
Expand Down

0 comments on commit 55d9b6b

Please sign in to comment.