cloud/e2e: Disable cost estimation
E2E tests including cost estimation should indeed be added, but the default case should be disabled; lots of cycles lost to pointless cost estimates on null and random resources.
This commit is contained in:
parent
fc5863844c
commit
e364ef2905
|
@ -40,8 +40,9 @@ type testCases map[string]struct {
|
|||
func createOrganization(t *testing.T) (*tfe.Organization, func()) {
|
||||
ctx := context.Background()
|
||||
org, err := tfeClient.Organizations.Create(ctx, tfe.OrganizationCreateOptions{
|
||||
Name: tfe.String("tst-" + randomString(t)),
|
||||
Email: tfe.String(fmt.Sprintf("%s@tfe.local", randomString(t))),
|
||||
Name: tfe.String("tst-" + randomString(t)),
|
||||
Email: tfe.String(fmt.Sprintf("%s@tfe.local", randomString(t))),
|
||||
CostEstimationEnabled: tfe.Bool(false),
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
|
|
Loading…
Reference in New Issue