@@ -2428,7 +2428,7 @@ describe('ManifestProcessor', () => {
24282428 const root = fixture ( 'uuid' ) ;
24292429
24302430 let manifest = JSON . parse ( await fs . promises . readFile ( path . join ( root , 'package.json' ) , 'utf8' ) ) ;
2431- assert . deepStrictEqual ( manifest . version , '1 .0.0' ) ;
2431+ assert . deepStrictEqual ( manifest . version , '100 .0.0' ) ;
24322432
24332433 const processor = new ManifestProcessor ( manifest , { version : '1.1.1' , updatePackageJson : false } ) ;
24342434 const packageJson = {
@@ -2441,14 +2441,14 @@ describe('ManifestProcessor', () => {
24412441 assert . deepStrictEqual ( processor . vsix . version , '1.1.1' ) ;
24422442
24432443 manifest = JSON . parse ( await fs . promises . readFile ( path . join ( root , 'package.json' ) , 'utf8' ) ) ;
2444- assert . deepStrictEqual ( manifest . version , '1 .0.0' ) ;
2444+ assert . deepStrictEqual ( manifest . version , '100 .0.0' ) ;
24452445 } ) ;
24462446
24472447 it ( 'should not bump package.json version in-memory when not using --no-update-package-json' , async ( ) => {
24482448 const root = fixture ( 'uuid' ) ;
24492449
24502450 let manifest = JSON . parse ( await fs . promises . readFile ( path . join ( root , 'package.json' ) , 'utf8' ) ) ;
2451- assert . deepStrictEqual ( manifest . version , '1 .0.0' ) ;
2451+ assert . deepStrictEqual ( manifest . version , '100 .0.0' ) ;
24522452
24532453 const processor = new ManifestProcessor ( manifest , { version : '1.1.1' } ) ;
24542454 const packageJson = {
@@ -2457,11 +2457,11 @@ describe('ManifestProcessor', () => {
24572457 } ;
24582458
24592459 manifest = JSON . parse ( await read ( await processor . onFile ( packageJson ) ) ) ;
2460- assert . deepStrictEqual ( manifest . version , '1 .0.0' ) ;
2461- assert . deepStrictEqual ( processor . vsix . version , '1 .0.0' ) ;
2460+ assert . deepStrictEqual ( manifest . version , '100 .0.0' ) ;
2461+ assert . deepStrictEqual ( processor . vsix . version , '100 .0.0' ) ;
24622462
24632463 manifest = JSON . parse ( await fs . promises . readFile ( path . join ( root , 'package.json' ) , 'utf8' ) ) ;
2464- assert . deepStrictEqual ( manifest . version , '1 .0.0' ) ;
2464+ assert . deepStrictEqual ( manifest . version , '100 .0.0' ) ;
24652465 } ) ;
24662466
24672467 it ( 'should not throw error for engine version with x (e.g. 1.95.x)' , async ( ) => {
0 commit comments