(client *helper.DevlakeClient, connectionId uint64)
| 125 | } |
| 126 | |
| 127 | func CreateTestScopeConfig(client *helper.DevlakeClient, connectionId uint64) *FakeScopeConfig { |
| 128 | config := helper.Cast[FakeScopeConfig](client.CreateScopeConfig(PLUGIN_NAME, connectionId, FakeScopeConfig{ |
| 129 | Name: "Scope config", |
| 130 | Env: "test env", |
| 131 | Entities: []string{plugin.DOMAIN_TYPE_CICD}, |
| 132 | })) |
| 133 | return &config |
| 134 | } |
| 135 | |
| 136 | func CreateTestBlueprints(t *testing.T, client *helper.DevlakeClient, count int) *BlueprintTestParams { |
| 137 | t.Helper() |