chore: fix incorrect type from merge

This commit is contained in:
Tim Griesser
2021-12-15 14:29:48 -05:00
parent 223d5fa7e6
commit 4c32cad4e7

View File

@@ -22,6 +22,6 @@ export function attachedFileWithPath (subject: HTMLInputElement, path: string) {
Cypress.Commands.add(
'attachFileWithPath',
{ prevSubject: true },
// @ts-ignore - fixed by https://github.com/cypress-io/cypress/pull/19003
attachedFileWithPath,
// TODO: Figure out why https://github.com/cypress-io/cypress/pull/19003 isn't fixing this?
attachedFileWithPath as any,
)