Skip to content

Commit

Permalink
fix: Remove const from enums
Browse files Browse the repository at this point in the history
  • Loading branch information
LewisW committed Sep 4, 2024
1 parent c0f46a8 commit c3720c0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions src/ActionType.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const enum ActionType {
CLICK = 'click',
TYPE = 'type',
KEY = 'key',
VALUE = 'value',
HOVER = 'hover',
SCROLL = 'scroll',
JAVASCRIPT = 'javascript',
}
export enum ActionType {
CLICK = "click",
TYPE = "type",
KEY = "key",
VALUE = "value",
HOVER = "hover",
SCROLL = "scroll",
JAVASCRIPT = "javascript",
}
18 changes: 9 additions & 9 deletions src/AssertionType.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const enum AssertionType {
CHECKED = 'checked',
CONTAINS = 'contains',
EQUALS = 'equals',
HIDDEN = 'hidden',
JAVASCRIPT = 'javascript',
URL = 'url',
VALUE = 'value',
VISIBLE = 'visible'
export enum AssertionType {
CHECKED = "checked",
CONTAINS = "contains",
EQUALS = "equals",
HIDDEN = "hidden",
JAVASCRIPT = "javascript",
URL = "url",
VALUE = "value",
VISIBLE = "visible",
}

0 comments on commit c3720c0

Please sign in to comment.