Files
portfolio/web/src/layouts/NavbarLayout/NavbarLayout.test.tsx
Ahmed Al-Taiar dcb3012a01 Responsive navbar
2024-08-09 21:17:35 -04:00

15 lines
367 B
TypeScript

import { render } from '@redwoodjs/testing/web'
import NavbarLayout from './NavbarLayout'
// Improve this test with help from the Redwood Testing Doc:
// https://redwoodjs.com/docs/testing#testing-pages-layouts
describe('NavbarLayout', () => {
it('renders successfully', () => {
expect(() => {
render(<NavbarLayout />)
}).not.toThrow()
})
})