@@ -341,6 +341,7 @@ describe('release-please-action', () => {
341341 assert . strictEqual ( output . version , '1.2.3' ) ;
342342 assert . strictEqual ( output . sha , 'abc123' ) ;
343343 assert . strictEqual ( output . paths_released , '["."]' ) ;
344+ assert . strictEqual ( output . body , 'Some release notes' ) ;
344345 } ) ;
345346
346347 it ( 'sets appropriate outputs when release PR opened' , async ( ) => {
@@ -411,6 +412,7 @@ describe('release-please-action', () => {
411412 assert . strictEqual ( output [ 'a--version' ] , '1.0.0' ) ;
412413 assert . strictEqual ( output [ 'a--sha' ] , 'abc123' ) ;
413414 assert . strictEqual ( output [ 'a--path' ] , 'a' ) ;
415+ assert . strictEqual ( output [ 'a--body' ] , 'Some release notes' ) ;
414416
415417 assert . strictEqual ( output [ 'b--id' ] , 123 ) ;
416418 assert . strictEqual ( output [ 'b--release_created' ] , true ) ;
@@ -423,6 +425,7 @@ describe('release-please-action', () => {
423425 assert . strictEqual ( output [ 'b--version' ] , '1.2.0' ) ;
424426 assert . strictEqual ( output [ 'b--sha' ] , 'abc123' ) ;
425427 assert . strictEqual ( output [ 'b--path' ] , 'b' ) ;
428+ assert . strictEqual ( output [ 'b--body' ] , 'Some release notes' ) ;
426429
427430 assert . strictEqual ( output . paths_released , '["a","b"]' ) ;
428431 assert . strictEqual ( output . releases_created , true ) ;
0 commit comments