chore: add tests for writing seo
This commit is contained in:
parent
788e90a77f
commit
94fe6b5c87
2 changed files with 73 additions and 0 deletions
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
|
@ -13,6 +13,7 @@
|
||||||
"Hetzner",
|
"Hetzner",
|
||||||
"Integra",
|
"Integra",
|
||||||
"Levantine",
|
"Levantine",
|
||||||
|
"opengraph",
|
||||||
"Orangebus",
|
"Orangebus",
|
||||||
"pipdig",
|
"pipdig",
|
||||||
"pubdate",
|
"pubdate",
|
||||||
|
@ -30,5 +31,8 @@
|
||||||
"editor.defaultFormatter": "standard.vscode-standard",
|
"editor.defaultFormatter": "standard.vscode-standard",
|
||||||
"[javascript]": {
|
"[javascript]": {
|
||||||
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
|
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
|
||||||
|
},
|
||||||
|
"[javascriptreact]": {
|
||||||
|
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
|
||||||
}
|
}
|
||||||
}
|
}
|
69
src/pages/writing/index.test.jsx
Normal file
69
src/pages/writing/index.test.jsx
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
/* eslint-env jest */
|
||||||
|
import { render } from '@testing-library/react'
|
||||||
|
import '@testing-library/jest-dom'
|
||||||
|
import Writing from '.'
|
||||||
|
|
||||||
|
jest.mock('next/head', () => {
|
||||||
|
return {
|
||||||
|
__esModule: true,
|
||||||
|
default: ({ children }) => {
|
||||||
|
return <>{children}</>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('Writing', () => {
|
||||||
|
it('renders without crashing', () => {
|
||||||
|
render(
|
||||||
|
getStubWritingComponent())
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders meta title', async () => {
|
||||||
|
const { container } = render(getStubWritingComponent())
|
||||||
|
expect(container.querySelector('title')).toHaveTextContent('Writing')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders opengraph title', () => {
|
||||||
|
const { container } = render(getStubWritingComponent())
|
||||||
|
expect(container.querySelector('meta[property="og:title"]'))
|
||||||
|
.toHaveAttribute('content', 'Writing')
|
||||||
|
})
|
||||||
|
|
||||||
|
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!')
|
||||||
|
})
|
||||||
|
|
||||||
|
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!')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
function getStubWritingComponent () {
|
||||||
|
const entries = [
|
||||||
|
{
|
||||||
|
attributes: {
|
||||||
|
title: 'My title one',
|
||||||
|
pubdate: 'Mon, 18 Mar 2024 16:47:32 GMT',
|
||||||
|
desc: 'This is my description.'
|
||||||
|
},
|
||||||
|
html: '<p>This is some content</p>',
|
||||||
|
slug: 'my-title-one'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributes: {
|
||||||
|
title: 'My title Two',
|
||||||
|
pubdate: 'Mon, 19 Mar 2024 16:47:32 GMT',
|
||||||
|
desc: 'This is my description.'
|
||||||
|
},
|
||||||
|
html: '<p>This is some content</p>',
|
||||||
|
slug: 'my-title-two'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
return <Writing entries={entries} urlPrefix='/' />
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue