@@ -42,7 +42,7 @@ describe('PackageRepo', () => {
4242 expect ( repo . nextVersion ) . to . equal ( '2.0.0' ) ;
4343 } ) ;
4444
45- it ( 'should use standard -version to determine the next version if the version in the package.json already exists' , async ( ) => {
45+ it ( 'should use commit-and-tag -version to determine the next version if the version in the package.json already exists' , async ( ) => {
4646 stubMethod ( $$ . SANDBOX , Package . prototype , 'readPackageJson' ) . returns (
4747 Promise . resolve ( { name : pkgName , version : '1.0.0' } )
4848 ) ;
@@ -51,7 +51,7 @@ describe('PackageRepo', () => {
5151 expect ( repo . nextVersion ) . to . equal ( '1.1.0' ) ;
5252 } ) ;
5353
54- it ( 'should use standard -version to determine a prerelease version' , async ( ) => {
54+ it ( 'should use commit-and-tag -version to determine a prerelease version' , async ( ) => {
5555 stubMethod ( $$ . SANDBOX , Package . prototype , 'readPackageJson' ) . returns (
5656 Promise . resolve ( { name : pkgName , version : '1.0.0' } )
5757 ) ;
@@ -61,7 +61,7 @@ describe('PackageRepo', () => {
6161 expect ( execStub . args [ 0 ] [ 0 ] ) . to . include ( '--prerelease' ) ;
6262 } ) ;
6363
64- it ( 'should use standard -version to determine a specific prerelease version' , async ( ) => {
64+ it ( 'should use commit-and-tag -version to determine a specific prerelease version' , async ( ) => {
6565 stubMethod ( $$ . SANDBOX , Package . prototype , 'readPackageJson' ) . returns (
6666 Promise . resolve ( { name : pkgName , version : '1.0.0' } )
6767 ) ;
0 commit comments