Skip to content

Commit

Permalink
Do not define ExecutionStatus as const enum
Browse files Browse the repository at this point in the history
It should be usable by JavaScript clients
  • Loading branch information
dubzzz committed Jan 24, 2019
1 parent a8eeb16 commit ee2df6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check/runner/reporter/ExecutionStatus.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Status of the execution of the property
*/
export const enum ExecutionStatus {
export enum ExecutionStatus {
Success = 0,
Skipped = -1,
Failure = 1
Expand Down

0 comments on commit ee2df6c

Please sign in to comment.