UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

11 lines (10 loc) 545 B
import Testeranto from "testeranto-react/src/react-dom/jsx/web"; import { MemoryRouter } from "react-router-dom"; import { implementation } from "./implementation"; import { specification } from "./specification"; import { TestPageView } from "../TestPageView"; import React from "react"; import "./../../../App.scss"; const WrappedTestPageView = (props) => (React.createElement(MemoryRouter, null, React.createElement(TestPageView, Object.assign({}, props)))); export default Testeranto(implementation, specification, WrappedTestPageView);