/** * 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