#jenkins How to write comments in a Jenkins pipeline
/*
for block comments
*/
// for single line comment
sh '''
npm tst
# this is a comment in sh
'''
/*
for block comments
*/
// for single line comment
sh '''
npm tst
# this is a comment in sh
'''