Skip to content

Commit

Permalink
fix(ci): ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Aug 11, 2023
1 parent 72eaf83 commit 8fceb83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/library/src/WebdriverIOTestElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum Button {
const log = logger('wdio-harness');

/** Maps the `TestKey` constants to WebdriverIO's `Key` constants. */
const keyMap = {
const keyMap: Record<number, string> = {
[TestKey.BACKSPACE]: 'Backspace',
[TestKey.TAB]: 'Tab',
[TestKey.ENTER]: 'Enter',
Expand Down

0 comments on commit 8fceb83

Please sign in to comment.