diff options
Diffstat (limited to 'src/components/molecules/layout')
8 files changed, 9 insertions, 1 deletions
diff --git a/src/components/molecules/layout/branding.test.tsx b/src/components/molecules/layout/branding.test.tsx index 3aa125d..4b76446 100644 --- a/src/components/molecules/layout/branding.test.tsx +++ b/src/components/molecules/layout/branding.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { Branding } from './branding'; diff --git a/src/components/molecules/layout/card.test.tsx b/src/components/molecules/layout/card.test.tsx index 0fcd59e..c6498b8 100644 --- a/src/components/molecules/layout/card.test.tsx +++ b/src/components/molecules/layout/card.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { Card } from './card'; import { cover, id, meta, tagline, title, url } from './card.fixture'; diff --git a/src/components/molecules/layout/code.test.tsx b/src/components/molecules/layout/code.test.tsx index 8687693..a0e4143 100644 --- a/src/components/molecules/layout/code.test.tsx +++ b/src/components/molecules/layout/code.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render } from '../../../../tests/utils'; import { Code } from './code'; diff --git a/src/components/molecules/layout/columns.test.tsx b/src/components/molecules/layout/columns.test.tsx index c907d8b..d63e477 100644 --- a/src/components/molecules/layout/columns.test.tsx +++ b/src/components/molecules/layout/columns.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { Column } from '../../atoms'; import { Columns } from './columns'; @@ -6,7 +7,7 @@ const column1 = 'Non praesentium voluptas quisquam ex est. Distinctio accusamus facilis libero in aut. Et veritatis quo impedit fugit amet sit accusantium. Ut est rerum asperiores sint libero eveniet. Molestias placeat recusandae suscipit eligendi sunt hic.'; const column2 = - 'Occaecati consectetur ad similique itaque rem doloremque commodi voluptate porro. Nam quo voluptas commodi qui rerum qui. Explicabo quis adipisci rerum. Culpa alias laboriosam temporibus iusto harum at placeat.'; + 'Quo perspiciatis mollitia non et. Modi voluptatem molestias. Facere ut molestiae exercitationem non nesciunt unde adipisci. Non cupiditate provident repudiandae. Natus quia necessitatibus libero enim earum quam et.'; const column3 = 'Libero aut ab neque voluptatem commodi. Quam quia voluptatem iusto dolorum. Enim ipsa totam corrupti qui cum quidem ea. Eos sed aliquam porro consequatur officia sed.'; diff --git a/src/components/molecules/layout/meta.test.tsx b/src/components/molecules/layout/meta.test.tsx index 1087fbb..f19c408 100644 --- a/src/components/molecules/layout/meta.test.tsx +++ b/src/components/molecules/layout/meta.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { getFormattedDate } from '../../../utils/helpers'; import { Meta } from './meta'; diff --git a/src/components/molecules/layout/page-footer.test.tsx b/src/components/molecules/layout/page-footer.test.tsx index 8497be9..7f0bcd5 100644 --- a/src/components/molecules/layout/page-footer.test.tsx +++ b/src/components/molecules/layout/page-footer.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { PageFooter } from './page-footer'; diff --git a/src/components/molecules/layout/page-header.test.tsx b/src/components/molecules/layout/page-header.test.tsx index b66f77a..1f1a139 100644 --- a/src/components/molecules/layout/page-header.test.tsx +++ b/src/components/molecules/layout/page-header.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { PageHeader } from './page-header'; diff --git a/src/components/molecules/layout/widget.test.tsx b/src/components/molecules/layout/widget.test.tsx index 11b37a5..21c7a3c 100644 --- a/src/components/molecules/layout/widget.test.tsx +++ b/src/components/molecules/layout/widget.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { Widget } from './widget'; |
