From 38a4791f9be55b6f8c60bf3817f8ec98709486fd Mon Sep 17 00:00:00 2001 From: Christopher Bisom Date: Thu, 5 Sep 2024 17:48:06 -0400 Subject: [PATCH] 10001-design-debt: remove unintentional default argument --- cypress/helpers/file/upload-file.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/helpers/file/upload-file.ts b/cypress/helpers/file/upload-file.ts index 8c295be39bd..65f065571fd 100644 --- a/cypress/helpers/file/upload-file.ts +++ b/cypress/helpers/file/upload-file.ts @@ -17,7 +17,7 @@ export function uploadFile(testId: string) { export function attachFile({ filePath, selector, - selectorToAwaitOnSuccess = '[data-testid^="upload-file-success"]', + selectorToAwaitOnSuccess, }: { selector: string; filePath: string;