@@ -40,11 +40,11 @@ test.serial('Throw "SemanticReleaseError" if "cmd" options is empty', async t =>
4040 t . is ( error . code , 'EINVALIDCMD' ) ;
4141} ) ;
4242
43- test . serial ( 'Throw "SemanticReleaseError" if another script plugin "cmd" options is missing' , async t => {
43+ test . serial ( 'Throw "SemanticReleaseError" if another exec plugin "cmd" options is missing' , async t => {
4444 const pluginConfig = { cmd : './test/fixtures/echo-args.sh' } ;
4545 const params = {
4646 logger : t . context . logger ,
47- options : { publish : [ '@semantic-release/npm' , { path : '@semantic-release/script ' } ] } ,
47+ options : { publish : [ '@semantic-release/npm' , { path : '@semantic-release/exec ' } ] } ,
4848 } ;
4949
5050 const error = await t . throws ( verifyConditions ( pluginConfig , params ) ) ;
@@ -53,13 +53,13 @@ test.serial('Throw "SemanticReleaseError" if another script plugin "cmd" options
5353 t . is ( error . code , 'EINVALIDCMD' ) ;
5454} ) ;
5555
56- test . serial ( 'Throw "SemanticReleaseError" if another script plugin "cmd" options is empty' , async t => {
56+ test . serial ( 'Throw "SemanticReleaseError" if another exec plugin "cmd" options is empty' , async t => {
5757 const pluginConfig = { cmd : './test/fixtures/echo-args.sh' } ;
5858 const params = {
5959 logger : t . context . logger ,
6060 options : {
6161 branch : 'master' ,
62- publish : [ '@semantic-release/npm' , { path : '@semantic-release/script ' , cmd : ' ' } ] ,
62+ publish : [ '@semantic-release/npm' , { path : '@semantic-release/exec ' , cmd : ' ' } ] ,
6363 } ,
6464 } ;
6565
0 commit comments