test: fix tests

This commit is contained in:
Aaron Yarborough 2024-03-22 17:31:14 +00:00
parent ce24ea1bc0
commit 3d443e421c
2 changed files with 7 additions and 5 deletions

View file

@ -11,7 +11,7 @@ describe('Header', () => {
it('renders correct navigation links', () => {
render(<Header />)
const links = ['Home', 'Writing', 'Recipess', 'Fun', 'CV']
const links = ['Home', 'Writing', 'Recipes', 'Fun', 'CV']
links.forEach(link => {
expect(screen.getByText(link)).toBeInTheDocument()
})

View file

@ -3,14 +3,16 @@ set -e # Exit with nonzero exit code if anything fails
echo "Preparing for deployment..."
echo "Building site..."
echo "- Running tests..."
npx jest
echo "- Building site..."
npm run build
echo "Commit any build artifacts..."
echo "- Commit any build artifacts..."
git add .
git commit -m "chore: build artifacts"
echo "Running tests..."
npx jest
echo "Finished preparing for deployment."