Skip to content

Commit 3aa946c

Browse files
committed
run again
1 parent aa891c5 commit 3aa946c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/framework-golden-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
strategy:
2121
matrix:
2222
config-test:
23+
- config-file: smoke.toml
24+
test-name: TestSmoke
2325
- config-file: load.toml
2426
test-name: TestLoad
2527
- config-file: chaos.toml

framework/examples/myproject/chaos_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import (
99
ns "github.com/smartcontractkit/chainlink-testing-framework/framework/components/simple_node_set"
1010
"github.com/stretchr/testify/require"
1111
"testing"
12-
"time"
1312
)
1413

1514
type CfgChaos struct {
@@ -36,10 +35,8 @@ func TestChaos(t *testing.T) {
3635
// example commands for Pumba:
3736
// stop --duration=1s --restart re2:node0 # stop one container for 1s and restart
3837
// "netem --tc-image=gaiadocker/iproute2 --duration=1m delay --time=300 re2:node.* # slow network
39-
_, err = chaos.ExecPumba("stop --duration=10s --restart re2:node0")
38+
_, err = chaos.ExecPumba("stop --duration=1s --restart re2:node0")
4039
require.NoError(t, err)
41-
time.Sleep(15 * time.Second)
42-
// we need to reconnect since we've rebooted some containers
4340
_, _, err = c[0].ReadBridges()
4441
require.NoError(t, err)
4542
})

0 commit comments

Comments
 (0)