mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-05-28 23:31:46 +08:00
17 lines
294 B
Go
17 lines
294 B
Go
package telemetry_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hasura/graphql-engine/cli/telemetry"
|
|
"github.com/hasura/graphql-engine/cli/version"
|
|
)
|
|
|
|
func TestBeam(t *testing.T) {
|
|
tm := telemetry.BuildEvent()
|
|
tm.Version = version.BuildVersion
|
|
tm.Command = "TEST"
|
|
tm.CanBeam = true
|
|
tm.Beam()
|
|
}
|