Skip to content

Commit 9ca1dd5

Browse files
committed
fix: enforcing no skip param for query options, removing uneccessary console statements, adding cbp to toc in readme [CAPI-2357]
1 parent 08c72c5 commit 9ca1dd5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/integration/asset-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe('Asset API - Read', () => {
5959
})
6060

6161
test('returns [limit] number of items', async () => {
62-
const response = await environment.getAssetsWithCursor({ limit: 3 })
62+
const response = await environment.getAssetsWithCursor({ limit: 3})
6363

6464
expect(response.items).toHaveLength(3)
6565
expect(response.pages).toBeDefined()

test/unit/test-creators/static-entity-methods.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export async function makeGetEntityTest(
77
{ entityType, mockToReturn, methodToTest, wrapperSuffix = '' },
88
) {
99
const { api, entitiesMock } = setup(Promise.resolve(mockToReturn))
10-
console.debug('HERE', entitiesMock[entityType])
1110
entitiesMock[entityType][`wrap${upperFirst(entityType)}${wrapperSuffix}`].mockReturnValue(
1211
mockToReturn,
1312
)

0 commit comments

Comments
 (0)