diff --git a/__test__/components/Article.test.jsx b/__test__/components/Article.test.jsx
index 98ecb73..a8ba778 100644
--- a/__test__/components/Article.test.jsx
+++ b/__test__/components/Article.test.jsx
@@ -2,6 +2,7 @@
import { render } from '@testing-library/react'
import Article from '../../src/components/Article/Article'
import '@testing-library/jest-dom'
+import { formatDate } from '@/lib/helpers'
describe('Article', () => {
it('renders title', () => {
@@ -21,7 +22,7 @@ describe('Article', () => {
it('renders pubdate if available', () => {
const props = generateArticleProps()
const { getByText } = render()
- const pubdateElement = getByText(props.attributes.pubdate)
+ const pubdateElement = getByText(formatDate(props.attributes.pubdate))
expect(pubdateElement).toBeInTheDocument()
})
diff --git a/__test__/pages/Writing.test.jsx b/__test__/pages/Writing.test.jsx
index 1ee61e7..126f220 100644
--- a/__test__/pages/Writing.test.jsx
+++ b/__test__/pages/Writing.test.jsx
@@ -1,7 +1,7 @@
/* eslint-env jest */
import { render } from '@testing-library/react'
import '@testing-library/jest-dom'
-import Writing from '../../src/pages/writing'
+import Writing, { Title, Description } from '../../src/pages/writing'
jest.mock('next/head', () => {
return {
@@ -20,26 +20,26 @@ describe('Writing', () => {
it('renders meta title', async () => {
const { container } = render(getStubWritingComponent())
- expect(container.querySelector('title')).toHaveTextContent('Writing')
+ expect(container.querySelector('title')).toHaveTextContent(Title)
})
it('renders opengraph title', () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('meta[property="og:title"]'))
- .toHaveAttribute('content', 'Writing')
+ .toHaveAttribute('content', Title)
})
it('renders meta description', () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('meta[name="description"]'))
- .toHaveAttribute('content', 'Come get ya thoughts, ramblings, technical writing and other long-from text content here!')
+ .toHaveAttribute('content', Description)
})
it('renders opengraph description', () => {
const { container } = render(getStubWritingComponent())
expect(container.querySelector('meta[property="og:description"]'))
- .toHaveAttribute('content', 'Come get ya thoughts, ramblings, technical writing and other long-from text content here!')
+ .toHaveAttribute('content', Description)
})
})
diff --git a/src/pages/cv/index.js b/src/pages/cv/index.js
index d8e3dcb..ccb192e 100644
--- a/src/pages/cv/index.js
+++ b/src/pages/cv/index.js
@@ -6,10 +6,10 @@ import showdown from 'showdown'
import { NextSeo } from 'next-seo'
import Resume from '@/components/Resume/Resume'
-export const Title = "CV";
-export const Description = "Read about my professional experience as a software engineer, core competencies, and certifications.";
+export const Title = 'CV'
+export const Description = 'Read about my professional experience as a software engineer, core competencies, and certifications.'
-function ResumePage({
+function ResumePage ({
competencies,
education,
certifications,
@@ -18,12 +18,14 @@ function ResumePage({
}) {
return (
-
+ }
+ />
{Title} 💼
{Description}
@@ -41,7 +43,7 @@ function ResumePage({
)
}
-export function getStaticProps() {
+export function getStaticProps () {
const content = fs.readFileSync('./content/pages/cv.yml', {
encoding: 'utf-8'
})
diff --git a/src/pages/index.js b/src/pages/index.js
index 9cf72e3..d29fa72 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -27,15 +27,15 @@ export default function Home () {
- {WritingTitle}
+ {WritingTitle}
{WritingDescription}
- Read more...
+ Read more...
- {CvTitle}
+ {CvTitle}
{CvDescription}
- Read more...
+ Read more...
diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js
index 1319c4b..a0b633d 100644
--- a/src/pages/writing/index.js
+++ b/src/pages/writing/index.js
@@ -8,10 +8,9 @@ import { formatDate } from '@/lib/helpers'
export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/')
export const Title = 'Writing'
-export const Description = 'A collection of writing and musings on various topics that interest me, as well as technical writing.';
+export const Description = 'A collection of writing and musings on various topics that interest me, as well as technical writing.'
export default function Writing ({ entries, urlPrefix }) {
-
return (