mirror of
https://github.com/vercel/commerce.git
synced 2025-06-15 20:01:21 +00:00
9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
import React from 'react'
|
|
import HomePage from './page'
|
|
|
|
describe('<HomePage />', () => {
|
|
it('renders', () => {
|
|
// see: https://on.cypress.io/mounting-react
|
|
cy.mount(<HomePage />)
|
|
})
|
|
}) |