test: fix tests
This commit is contained in:
parent
ce24ea1bc0
commit
3d443e421c
2 changed files with 7 additions and 5 deletions
|
@ -11,7 +11,7 @@ describe('Header', () => {
|
||||||
|
|
||||||
it('renders correct navigation links', () => {
|
it('renders correct navigation links', () => {
|
||||||
render(<Header />)
|
render(<Header />)
|
||||||
const links = ['Home', 'Writing', 'Recipess', 'Fun', 'CV']
|
const links = ['Home', 'Writing', 'Recipes', 'Fun', 'CV']
|
||||||
links.forEach(link => {
|
links.forEach(link => {
|
||||||
expect(screen.getByText(link)).toBeInTheDocument()
|
expect(screen.getByText(link)).toBeInTheDocument()
|
||||||
})
|
})
|
||||||
|
|
|
@ -3,14 +3,16 @@ set -e # Exit with nonzero exit code if anything fails
|
||||||
|
|
||||||
echo "Preparing for deployment..."
|
echo "Preparing for deployment..."
|
||||||
|
|
||||||
echo "Building site..."
|
echo "- Running tests..."
|
||||||
|
npx jest
|
||||||
|
|
||||||
|
echo "- Building site..."
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
echo "Commit any build artifacts..."
|
echo "- Commit any build artifacts..."
|
||||||
git add .
|
git add .
|
||||||
git commit -m "chore: build artifacts"
|
git commit -m "chore: build artifacts"
|
||||||
|
|
||||||
echo "Running tests..."
|
|
||||||
npx jest
|
|
||||||
|
|
||||||
echo "Finished preparing for deployment."
|
echo "Finished preparing for deployment."
|
Loading…
Add table
Reference in a new issue