mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-22 13:21:07 -05:00
10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
import React from "react"
|
|
import { render, screen } from "@testing-library/react"
|
|
import App from "./App"
|
|
|
|
test("renders learn react link", () => {
|
|
render(<App />)
|
|
const linkElement = screen.getByText(/learn react/i)
|
|
expect(linkElement).toBeInTheDocument()
|
|
})
|