Skip to content

Commit 401e44f

Browse files
Adebesin-Cellclaude
andcommitted
fix: add tarballUrl to dependency-resolver test expectation
The ResolvedPackage now includes tarballUrl field, update the exact match assertion to include the new field. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 36461d7 commit 401e44f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/server/utils/dependency-resolver.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ describe('dependency-resolver', () => {
199199

200200
expect(result.size).toBe(1)
201201
const pkg = result.get('root@1.0.0')
202-
expect(pkg).toEqual({ name: 'root', version: '1.0.0', size: 5000, optional: false })
202+
expect(pkg).toEqual({ name: 'root', version: '1.0.0', size: 5000, tarballUrl: '', optional: false })
203203
})
204204

205205
it('resolves direct dependencies', async () => {

0 commit comments

Comments
 (0)