ImagesTable: Update column headers

This updates the name of column headers as per recent mocks.
This commit is contained in:
regexowl 2024-04-16 10:30:23 +02:00 committed by Lucas Garfield
parent 709ae39d23
commit 305d4d9768
2 changed files with 6 additions and 6 deletions

View file

@ -53,9 +53,9 @@ describe('Images Table', () => {
// remove first row from list since it is just header labels
const header = rows.shift();
// test the header has correct labels
expect(header.cells[1]).toHaveTextContent('Image name');
expect(header.cells[2]).toHaveTextContent('Created');
expect(header.cells[3]).toHaveTextContent('Release');
expect(header.cells[1]).toHaveTextContent('Name');
expect(header.cells[2]).toHaveTextContent('Updated');
expect(header.cells[3]).toHaveTextContent('OS');
expect(header.cells[4]).toHaveTextContent('Target');
expect(header.cells[5]).toHaveTextContent('Status');
expect(header.cells[6]).toHaveTextContent('Instance');