Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions test/e2e-go/features/transactions/asset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package transactions
import (
"fmt"
"path/filepath"
"runtime"
"strings"
"testing"

Expand Down Expand Up @@ -420,9 +419,6 @@ func TestAssetConfig(t *testing.T) {
}

func TestAssetInformation(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip()
}
t.Parallel()
a := require.New(t)

Expand Down Expand Up @@ -640,9 +636,6 @@ func TestAssetGroupCreateSendDestroy(t *testing.T) {
}

func TestAssetSend(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip()
}
t.Parallel()
a := require.New(t)

Expand Down
4 changes: 0 additions & 4 deletions test/e2e-go/features/transactions/sendReceive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package transactions
import (
"math/rand"
"path/filepath"
"runtime"
"testing"

"github.com/stretchr/testify/require"
Expand All @@ -41,9 +40,6 @@ func GenerateRandomBytes(n int) []byte {
// this test checks that two accounts' balances stay up to date
// as they send each other money many times
func TestAccountsCanSendMoney(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip()
}
if testing.Short() {
t.Skip()
}
Expand Down
4 changes: 0 additions & 4 deletions test/e2e-go/restAPI/restClient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import (
"math/rand"
"os"
"path/filepath"
"runtime"
"strings"
"testing"
"time"
Expand Down Expand Up @@ -196,9 +195,6 @@ func TestClientCanGetStatusAfterBlock(t *testing.T) {
}

func TestTransactionsByAddr(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip()
}
var localFixture fixtures.RestClientFixture
localFixture.Setup(t, filepath.Join("nettemplates", "TwoNodes50Each.json"))
defer localFixture.Shutdown()
Expand Down