1
0
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
Files
arduino-parts-inventory/web/src/pages/PartPage/PartPage.test.tsx
Ahmed Al-Taiar 53e0070fd8 Part browsing
2023-11-04 17:32:14 -04:00

15 lines
351 B
TypeScript

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