Skip to content

Commit

Permalink
Add hello-world to go.work.example
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehsan-saradar committed Feb 6, 2024
1 parent b3474ed commit 1964064
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/hello-world/integration/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func TestHelloWorld(t *testing.T) {
),
step.Workdir(app.SourcePath()),
step.Stdout(buf),
step.Stderr(buf),
)),
))
require.Equal("Hello, world!\n", buf.String())
Expand Down
1 change: 1 addition & 0 deletions go.work.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
go 1.21.1

use (
./examples/hello-world
./official/explorer
./official/hermes
./official/marketplace
Expand Down
3 changes: 1 addition & 2 deletions official/marketplace/integration/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ import (
)

func TestMarketplace(t *testing.T) {
t.SkipNow()

var (
require = require.New(t)
env = envtest.New(t)
Expand Down Expand Up @@ -53,6 +51,7 @@ func TestMarketplace(t *testing.T) {
),
step.Workdir(app.SourcePath()),
step.Stdout(buf),
step.Stderr(buf),
)),
))
require.Condition(func() bool {
Expand Down

0 comments on commit 1964064

Please sign in to comment.