testeranto
Version:
the AI powered BDD test framework for typescript projects
19 lines (18 loc) • 947 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.specification = void 0;
const specification = (Suite, Given, When, Then) => {
return [
Suite.Default("Testing BaseBuilder functionality", {
testInitialization: Given["the default BaseBuilder"](["BaseBuilder should initialize correctly"], [], [
Then["it is initialized"](),
Then["it tracks artifacts"](),
// Then["it creates jobs"](),
// Then["it generates TestSpecifications"](),
]),
testSpecsGeneration: Given["the default BaseBuilder"](["BaseBuilder should generate specs from test specification"], [], [Then["it generates TestSpecifications"]()]),
testJobsCreation: Given["the default BaseBuilder"](["BaseBuilder should create test jobs"], [], [Then["it creates jobs"]()]),
}),
];
};
exports.specification = specification;