diff --git a/main_test.go b/main_test.go index 1d59eee..c67c2c2 100644 --- a/main_test.go +++ b/main_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2021 Doc.ai and/or its affiliates. +// Copyright (c) 2021-2022 Doc.ai and/or its affiliates. // // SPDX-License-Identifier: Apache-2.0 // @@ -25,6 +25,7 @@ import ( "github.com/networkservicemesh/integration-tests/suites/features" "github.com/networkservicemesh/integration-tests/suites/heal" "github.com/networkservicemesh/integration-tests/suites/memory" + "github.com/networkservicemesh/integration-tests/suites/observability" ) func TestRunFeatureSuite(t *testing.T) { @@ -42,3 +43,7 @@ func TestRunMemorySuite(t *testing.T) { func TestRunHealSuite(t *testing.T) { suite.Run(t, new(heal.Suite)) } + +func TestRunObservabilitySuite(t *testing.T) { + suite.Run(t, new(observability.Suite)) +}