Expressions: Add model struct for the query types (not map[string]any) (#82745)

This commit is contained in:
Ryan McKinley
2024-02-16 16:59:11 -08:00
committed by GitHub
parent 46a77c0074
commit f23f50f58d
15 changed files with 2074 additions and 1776 deletions

View File

@ -7,6 +7,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/grafana/grafana/pkg/services/datasources"
"github.com/grafana/grafana/pkg/services/featuremgmt"
)
func TestServicebuildPipeLine(t *testing.T) {
@ -231,7 +232,9 @@ func TestServicebuildPipeLine(t *testing.T) {
expectedOrder: []string{"B", "A"},
},
}
s := Service{}
s := Service{
features: featuremgmt.WithFeatures(featuremgmt.FlagExpressionParser),
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
nodes, err := s.buildPipeline(tt.req)