test(e2e): Build UI when running docker scenarios locally (#3463)

* test(e2e): Add session id to logs for debug purposes

* test(e2e): Build UI when building docker resources
pull/3480/head
Michael Li 3 years ago committed by GitHub
parent 277f0a0035
commit 0d4ef933c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,6 @@ root_dir="$(git rev-parse --show-toplevel)"
pushd "${root_dir}" > /dev/null
export IMAGE_TAG_DEV="${IMAGE_NAME}"
make docker-build-dev
make build-ui docker-build-dev
popd > /dev/null

@ -49,6 +49,7 @@ func WaitForSessionCli(t testing.TB, ctx context.Context, projectId string) *ses
}
session = sessionListResult.Items[0]
t.Logf("Created Session: %s", session.Id)
return nil
},
backoff.WithMaxRetries(backoff.NewConstantBackOff(3*time.Second), 5),

Loading…
Cancel
Save