@@ -67,7 +67,7 @@ describe('pnpm Adapter', () => {
6767 let stubbedRun = generateMockRun (
6868 [
6969 {
70- command : 'pnpm install --frozen-lockfile=false' ,
70+ command : 'pnpm install --frozen-lockfile=false --no-lockfile ' ,
7171 async callback ( command , args , opts ) {
7272 runCount ++ ;
7373 expect ( opts ) . to . have . property ( 'cwd' , tmpdir ) ;
@@ -115,7 +115,7 @@ describe('pnpm Adapter', () => {
115115 } ) ;
116116
117117 describe ( '#cleanup' , ( ) => {
118- it ( 'restores the `package.json` and `yarn -lock.yaml` files, and then runs `pnpm install`' , async ( ) => {
118+ it ( 'restores the `package.json` and `pnpm -lock.yaml` files, and then runs `pnpm install`' , async ( ) => {
119119 await fs . outputJson ( 'package.json' , { modifiedPackageJSON : true } ) ;
120120 await fs . outputJson ( 'package.json.ember-try' , { originalPackageJSON : true } ) ;
121121 await fs . outputFile ( 'pnpm-lock.yaml' , 'modifiedYAML: true\n' ) ;
@@ -125,7 +125,7 @@ describe('pnpm Adapter', () => {
125125 let stubbedRun = generateMockRun (
126126 [
127127 {
128- command : 'pnpm install --frozen-lockfile=false' ,
128+ command : 'pnpm install --frozen-lockfile=false --no-lockfile ' ,
129129 async callback ( command , args , opts ) {
130130 runCount ++ ;
131131 expect ( opts ) . to . have . property ( 'cwd' , tmpdir ) ;
0 commit comments