testeranto
Version:
the AI powered BDD test framework for typescript projects
33 lines (32 loc) • 1.02 kB
JavaScript
import * as React from "react";
import * as ReactDom from "react-dom/client";
export const interface = {
beforeEach: async (subject, initializer) => {
const container = document.createElement("div");
document.body.appendChild(container);
const root = ReactDom.createRoot(container);
const props = initializer();
const reactElement = React.createElement(subject, props);
root.render(reactElement);
return {
container,
reactElement,
domRoot: root,
animationElement: container.querySelector(".sunrise-animation"),
};
},
afterEach: async (store) => {
store.domRoot.unmount();
document.body.removeChild(store.container);
return store;
},
andWhen: async (store, whenCB) => {
return whenCB(store);
},
butThen: async (store, thenCB) => {
return thenCB(store);
},
afterAll: () => { },
beforeAll: () => ({}),
assertThis: (x) => x,
};