Skip to content

Commit 7f62a20

Browse files
committed
lint
Signed-off-by: Luciano Resende <lresende@apple.com>
1 parent 0f35ff8 commit 7f62a20

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

cypress/support/commands.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,7 @@ Cypress.Commands.add('deleteFiles', (names: string[]): void => {
143143
if (names.length === 0) {
144144
return;
145145
}
146-
const findCommands = names
147-
.map((name) => `-name "${name}"`)
148-
.join(' -o ');
146+
const findCommands = names.map((name) => `-name "${name}"`).join(' -o ');
149147
cy.exec(`find build/cypress/ \\( ${findCommands} \\) -delete`, {
150148
failOnNonZeroExit: false
151149
});

0 commit comments

Comments
 (0)