UNPKG

@stryker-mutator/api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

18 lines 324 B
/** * Indicates what the result of a single test was. */ export declare enum TestStatus { /** * The test succeeded */ Success = 0, /** * The test failed */ Failed = 1, /** * The test was skipped (not executed) */ Skipped = 2 } //# sourceMappingURL=test-status.d.ts.map