We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c88394 commit 4598212Copy full SHA for 4598212
e2e/e2e_test.go
@@ -13,20 +13,20 @@ import (
13
14
func TestE2E(t *testing.T) {
15
if os.Getenv("TEST_E2E") != "true" {
16
- t.Skip("Skipping TestE2E as requested.")
+ t.Skip("Skipping E2E tests.")
17
}
18
if runtime.GOARCH == "arm64" {
19
log.Println("Skipping tests: Unsupported architecture (arm64)")
20
t.Skip()
21
22
23
chainContainer, endpoint, err := utils.SetupLocalChain(context.Background())
24
- require.NoError(t, err)
25
t.Cleanup(func() {
26
if err := chainContainer.Terminate(context.Background()); err != nil {
27
t.Logf("failed to terminate chain container: %v", err)
28
29
})
+ require.NoError(t, err)
30
31
log.Printf("Chain endpoint: %s\n", endpoint)
32
0 commit comments