Skip to content

Commit

Permalink
PMM-12608 Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matejkubinec committed Nov 15, 2023
1 parent 7b22fc4 commit 7b70e0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe('getAdditionalOptions ::', () => {
const fields = container.querySelectorAll('input');
const trakingFields = screen.getAllByTestId('tracking-radio-button');
expect(trakingFields.length).toBe(trackingOptions.length);
expect(fields.length).toBe(11);
expect(fields.length).toBe(12);
});
it('should render correct for RDS PostgreSQL', async () => {
const type = Databases.postgresql;
Expand All @@ -198,6 +198,6 @@ describe('getAdditionalOptions ::', () => {
const fields = container.querySelectorAll('input');
const trakingFields = screen.getAllByTestId('tracking-radio-button');
expect(trakingFields.length).toBe(rdsTrackingOptions.length);
expect(fields.length).toBe(12);
expect(fields.length).toBe(13);
});
});

0 comments on commit 7b70e0e

Please sign in to comment.