Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hborawski committed Jun 4, 2020
1 parent ba3b61e commit 4ff3230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/cocoapods/__tests__/cocoapods.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ describe("Cocoapods Plugin", () => {
mockPodspec(specWithVersion("0.0.1"));

exec = jest.fn().mockImplementation((...args) => {
if (args && args[1] && args[1][1] === 'list') {
if (args[1]?.[1] === 'list') {
return `
autoPublishRepo
- Type: git (master)
Expand Down

0 comments on commit 4ff3230

Please sign in to comment.