()
| 123 | } |
| 124 | |
| 125 | func configWithConstellation() *model.ConfigConfig { |
| 126 | cfg := getConfig() |
| 127 | cfg.Experimental = &model.ConfigExperimental{ |
| 128 | Constellation: &model.ConfigConstellation{ |
| 129 | Version: new("0.0.1"), |
| 130 | Settings: nil, |
| 131 | }, |
| 132 | } |
| 133 | |
| 134 | return cfg |
| 135 | } |
| 136 | |
| 137 | func TestGraphql(t *testing.T) { |
| 138 | t.Parallel() |
nothing calls this directly
no test coverage detected