From 0d33916be0c75c9c26d72367cfb53c0b1e99c31c Mon Sep 17 00:00:00 2001 From: stack72 Date: Tue, 4 Jan 2022 15:25:25 +0000 Subject: [PATCH] Re-enable aws-go-fargate test Fixes: #1130 --- misc/test/aws_test.go | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/misc/test/aws_test.go b/misc/test/aws_test.go index fbad77366..6eff7f74f 100644 --- a/misc/test/aws_test.go +++ b/misc/test/aws_test.go @@ -1,3 +1,4 @@ +//go:build Aws || all // +build Aws all package test @@ -47,18 +48,9 @@ func TestAccAwsGoEks(t *testing.T) { } func TestAccAwsGoFargate(t *testing.T) { - // TODO[pulumi/examples#1130]: Reenable test - t.Skip(`Skip due to failure: "63" does not contain "Welcome to nginx!"`) test := getAWSBase(t). With(integration.ProgramTestOptions{ Dir: path.Join(getCwd(t), "..", "..", "aws-go-fargate"), - ExtraRuntimeValidation: func(t *testing.T, stack integration.RuntimeValidationStackInfo) { - maxWait := 10 * time.Minute - endpoint := stack.Outputs["url"].(string) - assertHTTPResultWithRetry(t, endpoint, nil, maxWait, func(body string) bool { - return assert.Contains(t, body, "Welcome to nginx!") - }) - }, }) integration.ProgramTest(t, &test)