Skip to content

Commit

Permalink
feat: format code to respect prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Jul 13, 2023
1 parent 5e0be4f commit 48b6a49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/Navigation.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('Navigation', () => {
// The new page should contain two "lorem ipsum" paragraphs
cy.findAllByText('Lorem ipsum dolor sit amet', { exact: false }).should(
'have.length',
2
2,
);
});

Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Meta.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jest.mock(
function Head(props: { children: ReactNode }) {
// eslint-disable-next-line testing-library/no-node-access
return props.children;
}
},
);

describe('Meta component', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/templates/Main.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('Main template', () => {
*/
expect(copyrightLink).toHaveAttribute(
'href',
'https://creativedesignsguru.com'
'https://creativedesignsguru.com',
);
});
});
Expand Down

0 comments on commit 48b6a49

Please sign in to comment.