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.
gcgj-dify-1.7.0/web/app/components/base/mfa-test.spec.tsx

13 lines
414 B
TypeScript

import React from 'react'
import { render, screen } from '@testing-library/react'
import '@testing-library/jest-dom'
// Simple test component for debugging
const TestComponent = () => <div>MFA Test Component</div>
describe('MFA Debug Test', () => {
test('renders simple component', () => {
render(<TestComponent />)
expect(screen.getByText('MFA Test Component')).toBeInTheDocument()
})
})