testeranto
Version:
the AI powered BDD test framework for typescript projects
10 lines (9 loc) • 561 B
JavaScript
import Testeranto from "testeranto-react/src/react-dom/component/web";
import { MemoryRouter } from "react-router-dom";
import { implementation } from "./implementation";
import { specification } from "./specification";
import { FeaturesReporterView } from "../FeaturesReporterView";
import React from "react";
const WrappedFeaturesReporterView = (props) => (React.createElement(MemoryRouter, null,
React.createElement(FeaturesReporterView, Object.assign({}, props))));
export default Testeranto(implementation, specification, WrappedFeaturesReporterView);