Skip to content

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed May 17, 2024
1 parent faecada commit 5d9e3b0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dedupe/check/test/dedupeDiffCheck.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { DedupeCheckIssuesError, dedupeDiffCheck } from '@pnpm/dedupe.check'
import { type Lockfile } from '@pnpm/lockfile-types'
import { type DepPath } from '@pnpm/types'

describe('dedupeDiffCheck', () => {
it('should have no changes for same lockfile', () => {
Expand Down Expand Up @@ -38,15 +39,15 @@ describe('dedupeDiffCheck', () => {
},
},
packages: {
'/is-positive@3.0.0': {
['is-positive@3.0.0' as DepPath]: {
resolution: {
integrity: 'sha512-JDkaKp5jWv24ZaFuYDKTcBrC/wBOHdjhzLDkgrrkJD/j7KqqXsGcAkex336qHoOFEajMy7bYqUgm0KH9/MzQvw==',
},
engines: {
node: '>=0.10.0',
},
},
'/is-positive@3.1.0': {
['is-positive@3.1.0' as DepPath]: {
resolution: {
integrity: 'sha1-hX21hKG6XRyymAUn/DtsQ103sP0=',
},
Expand Down Expand Up @@ -78,7 +79,7 @@ describe('dedupeDiffCheck', () => {
},
},
packages: {
'/is-positive@3.1.0': {
['is-positive@3.1.0' as DepPath]: {
resolution: {
integrity: 'sha1-hX21hKG6XRyymAUn/DtsQ103sP0=',
},
Expand Down

0 comments on commit 5d9e3b0

Please sign in to comment.