mirror of https://github.com/fluxcd/cli-utils.git
20 lines
370 B
Go
20 lines
370 B
Go
// Copyright 2021 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package apply
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
// TestMain executes the tests for this package, with optional logging.
|
|
// To see all logs, use:
|
|
// go test sigs.k8s.io/cli-utils/pkg/apply -v -args -v=5
|
|
func TestMain(m *testing.M) {
|
|
klog.InitFlags(nil)
|
|
os.Exit(m.Run())
|
|
}
|