fix expected endpoint response

Signed-off-by: Meredith Lancaster <[email protected]>
This commit is contained in:
Meredith Lancaster
2025-12-09 08:02:38 -08:00
parent 97b7fa81c8
commit 0380590fdd
2 changed files with 7 additions and 7 deletions
@@ -48,13 +48,13 @@ describe('createStorageRecord', () => {
registry_url: 'https://my-registry.org'
})
})
.reply(201, {storage_records: [{id: '123'}, {id: '456'}]})
.reply(200, {storage_records: [{id: 123}, {id: 456}]})
})
it('persists the storage record', async () => {
await expect(createStorageRecord(options)).resolves.toEqual([
'123',
'456'
123,
456
])
})
})
@@ -114,7 +114,7 @@ describe('createStorageRecord', () => {
registry_url: options.packageRegistryOptions.registryUrl
})
})
.reply(201, {storage_records: [{id: '123'}, {id: '456'}]})
.reply(200, {storage_records: [{id: 123}, {id: 456}]})
.times(1)
})
@@ -124,7 +124,7 @@ describe('createStorageRecord', () => {
...options,
writeOptions: {}
})
).resolves.toEqual(['123', '456'])
).resolves.toEqual([123, 456])
})
})
})