fix linter issues

Signed-off-by: Meredith Lancaster <[email protected]>
This commit is contained in:
Meredith Lancaster
2025-12-09 11:40:40 -08:00
parent 539724611c
commit 701191f50e
2 changed files with 12 additions and 4 deletions
@@ -48,7 +48,15 @@ describe('createStorageRecord', () => {
})
it('persists the storage record', async () => {
await expect(createStorageRecord(artifactOptions, packageRegistryOptions, token, undefined, headers)).resolves.toEqual([123, 456])
await expect(
createStorageRecord(
artifactOptions,
packageRegistryOptions,
token,
undefined,
headers
)
).resolves.toEqual([123, 456])
})
})