UNPKG

405 BTypeScriptView Raw
1import "@testing-library/jest-dom";
2import React from "react";
3import { DropzoneLabel } from "../src";
4
5import { cleanup, fireEvent, render, screen } from "@testing-library/react";
6
7test("Validate label text must be 'Drop yor files here...'", () => {
8 render(<DropzoneLabel> Drop yor files here...</DropzoneLabel>);
9 expect(screen.getByText("Drop yor files here...")).toBeInTheDocument();
10});