1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
package kasapp
import (
"testing"
"github.com/stretchr/testify/require"
)
// Test for https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent/-/issues/374.
// Test for https://github.com/open-telemetry/opentelemetry-go/issues/3769.
// If it fails, make sure you've updated the version of go.opentelemetry.io/otel/semconv that's imported to match
// what OTEL SDK uses internally.
func TestConstructResource(t *testing.T) {
_, err := constructResource()
require.NoError(t, err)
}
|