mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
482 B
TypeScript
14 lines
482 B
TypeScript
/// <reference types="@testing-library/jest-dom" />
|
|
import React from 'react'
|
|
import { render, fireEvent } from '@testing-library/react'
|
|
import { describe, it, expect } from 'vitest'
|
|
import TermsAcceptance from '../../src/components/TermsAcceptance'
|
|
|
|
describe('TermsAcceptance', () => {
|
|
it('opens modal', () => {
|
|
const { getByText } = render(<TermsAcceptance />)
|
|
fireEvent.click(getByText('our terms'))
|
|
expect(getByText('FilePizza Terms')).toBeInTheDocument()
|
|
})
|
|
})
|