time-convertor-ts

Convert time across timezones (typescript)
git clone http://git.hanabi.in/repos/time-convertor-ts.git
Log | Files | Refs | README | LICENSE

App.test.tsx (286B)


      1 import React from "react";
      2 import { render } from "@testing-library/react";
      3 import App from "./App/index";
      4 
      5 test("renders learn react link", () => {
      6   const { getByText } = render(<App />);
      7   const linkElement = getByText(/learn react/i);
      8   expect(linkElement).toBeInTheDocument();
      9 });