Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rmanaem committed Feb 20, 2025
1 parent 90b2c6d commit 4eda49a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/component/UploadCard.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function MockPreviewComponent() {

const props = {
title: 'some title',
FileUploaderDisplayText: 'some dispaly text',
FileUploaderDisplayText: 'some display text',
allowedFileType: '.tsv',
uploadedFileName: exampleFileName,
onFileUpload: () => {},
Expand Down Expand Up @@ -57,7 +57,7 @@ describe('UploadCard', () => {
it('should render the component correctly', () => {
cy.get('[data-cy="some title-upload-card"]').should('be.visible');
cy.get('[data-cy="some title-upload-card"]').should('contain', 'some title');
cy.get('[data-cy="some title-upload-card"]').should('contain', 'some dispaly text');
cy.get('[data-cy="some title-upload-card"]').should('contain', 'some display text');
});
it('should open the preview, and verify the data table preview component is rendered', () => {
cy.get('[data-cy="some title-card-uploaded-file-name"]').should('contain', exampleFileName);
Expand Down

0 comments on commit 4eda49a

Please sign in to comment.