Skip to content

Commit

Permalink
fix(get-updates): refactor test cases to use 'it' for better consiste…
Browse files Browse the repository at this point in the history
…ncy in update retrieval tests
  • Loading branch information
guidomodarelli committed Dec 17, 2024
1 parent d830303 commit baaa0e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe('getUpdates function', () => {
jest.clearAllMocks();
});

test('should return available updates from saved object', async () => {
it('should return available updates from saved object', async () => {
const semver = {
major: 4,
minor: 3,
Expand Down Expand Up @@ -93,7 +93,7 @@ describe('getUpdates function', () => {
expect(updates).toEqual(savedObject);
});

test('should return available updates from api', async () => {
it('should return available updates from api', async () => {
const semver = {
major: 4,
minor: 3,
Expand Down

0 comments on commit baaa0e5

Please sign in to comment.