mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
d053653a93
* Provide golang based karma step
17 lines
334 B
Go
17 lines
334 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestKarmaExecuteTestsCommand(t *testing.T) {
|
|
|
|
testCmd := KarmaExecuteTestsCommand()
|
|
|
|
// only high level testing performed - details are tested in step generation procudure
|
|
assert.Equal(t, "karmaExecuteTests", testCmd.Use, "command name incorrect")
|
|
|
|
}
|