mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-06-03 01:44:53 +00:00

Move out cmd pieces and split into its own package. Also make sure we reload plugins before bootstrapping nodes. Also commons out the agent configuration in a specific YAML file.
14 lines
199 B
Go
14 lines
199 B
Go
package agent_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestInstaller(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Installer Suite")
|
|
}
|