UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

20 lines (19 loc) 683 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.specification = void 0; const specification = (Suite, Given, When, Then) => { return [ Suite.Default("ModalContent Component Tests", { basicRender: Given.Default([ "ModalContent should render", "It should contain a Modal.Header", "It should render the ThemeCard components", ], [], [ Then.hasModalHeader(undefined), Then.hasThemeCards(undefined), Then.takeScreenshot("modal-content.png"), ]), }), ]; }; exports.specification = specification;