UNPKG

@stryker-mutator/api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

18 lines (17 loc) 240 B
/** * Indicates what the result of a single test was. */ export enum TestStatus { /** * The test succeeded */ Success, /** * The test failed */ Failed, /** * The test was skipped (not executed) */ Skipped, }