Skip to content

Commit

Permalink
EES-5544 update integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettstuart committed Dec 20, 2024
1 parent 6aa1a17 commit 85840e2
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 133 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ const DataFilesTable = ({
<tbody>
{dataFiles.map(dataFile => (
<tr key={dataFile.title}>
<td>{dataFile.title}</td>
<td className={styles.fileSize}>
<td data-testid="Subject title">{dataFile.title}</td>
<td data-testid="Data file size" className={styles.fileSize}>
{dataFile.fileSize.size.toLocaleString()} {dataFile.fileSize.unit}
</td>
<td>
<td data-testid="Status">
<ImporterStatus
className={styles.fileStatus}
releaseId={releaseId}
dataFile={dataFile}
onStatusChange={onStatusChange}
/>
</td>
<td>
<td data-testid="Actions">
<ButtonGroup className={styles.actions}>
<Modal
showClose
Expand Down
Loading

0 comments on commit 85840e2

Please sign in to comment.