Skip to content

Commit

Permalink
Small refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninarchive committed Dec 20, 2023
1 parent f326893 commit 87c8bcc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { fireEvent, render, screen } from '@testing-library/react';
import { render } from '@testing-library/react';
import '@testing-library/jest-dom'
import { AuditChange, AuditLog, AuditModelTypes } from '../audit-models';
import { AuditLog, AuditModelTypes } from '../audit-models';
import { AuditChangeEntry } from '../AuditChangeEntry';

it.skip('AuditChangeEntry example test', () => {
Expand All @@ -15,7 +15,7 @@ it.skip('AuditChangeEntry example test', () => {
diff: [],
};
const modelType: AuditModelTypes = 'client'
const rendered = render(<AuditChangeEntry change={change} modelType={modelType} />)
render(<AuditChangeEntry change={change} modelType={modelType} />)
})

})
Expand Down

0 comments on commit 87c8bcc

Please sign in to comment.