1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/npmExecuteScripts_generated_test.go

21 lines
380 B
Go
Raw Normal View History

//go:build unit
// +build unit
package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNpmExecuteScriptsCommand(t *testing.T) {
t.Parallel()
testCmd := NpmExecuteScriptsCommand()
// only high level testing performed - details are tested in step generation procedure
assert.Equal(t, "npmExecuteScripts", testCmd.Use, "command name incorrect")
}