Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceWouaigne committed Jan 3, 2025
1 parent b947fa0 commit fdc420e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/linkup-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('LinkupClient', () => {
baseURL: 'https://api.linkup.so/v1',
headers: {
Authorization: 'Bearer 1234',
'User-Agent': 'Linkup-JS-SDK/1.0.0',
'User-Agent': 'Linkup-JS-SDK/1.0.1',
},
},
);
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/utils/version.utils.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getVersionFromPackage } from '../../utils/version.utils';

it('should return package version', () => {
expect(getVersionFromPackage()).toEqual('1.0.0');
expect(getVersionFromPackage()).toEqual('1.0.1');
});

0 comments on commit fdc420e

Please sign in to comment.