Skip to content

Commit

Permalink
npm lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalshit27 committed Oct 16, 2024
1 parent fe52cdc commit 482474f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ export const testDataDir = path.resolve(localDir, 'testData');
export function mockPagedData(params, key, data) {
return params?.include_totals
? {
data: {
[key]: data,
total: data?.length || 0,
},
}
data: {
[key]: data,
total: data?.length || 0,
},
}
: {
data,
};
data,
};
}

export function mockMgmtClient() {
Expand Down

0 comments on commit 482474f

Please sign in to comment.