Skip to content

Commit

Permalink
test: rearange e2e test dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpioborn committed Apr 30, 2024
1 parent d6f4170 commit 9353a1b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions tests/reward/cli_test.go → tests/e2e/reward/cli_test.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
package client
package client_test

import (
"testing"

"github.com/sge-network/sge/testutil/network"
"github.com/stretchr/testify/suite"

client "github.com/sge-network/sge/tests/e2e/reward"
"github.com/sge-network/sge/testutil/network"
)

func TestE2ETestSuite(t *testing.T) {
cfg := network.DefaultConfig()
cfg.NumValidators = 1
suite.Run(t, NewE2ETestSuite(cfg))
suite.Run(t, client.NewE2ETestSuite(cfg))
}
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/reward/suite.go → tests/e2e/reward/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"

sdkcli "github.com/sge-network/sge/tests/sdk"
sdkcli "github.com/sge-network/sge/tests/e2e/sdk"
"github.com/sge-network/sge/testutil/network"
"github.com/sge-network/sge/testutil/simapp"
sgetypes "github.com/sge-network/sge/types"
Expand Down
File renamed without changes.

0 comments on commit 9353a1b

Please sign in to comment.