Commit 94fc82c2 authored by Adrian Sutton's avatar Adrian Sutton

op-program: Allow new named chains to be added without the op-geth config

Simplifies the bedrock migration and the new mainnet config can be added afterwards.
parent e31ec008
......@@ -78,6 +78,11 @@ func TestNetwork(t *testing.T) {
name := name
expected := cfg
t.Run("Network_"+name, func(t *testing.T) {
// TODO(CLI-3936) Re-enable test for other networks once bedrock migration is complete
if name != "goerli" {
t.Skipf("Not requiring chain config for network %s", name)
return
}
args := replaceRequiredArg("--network", name)
cfg := configForArgs(t, args)
require.Equal(t, expected, *cfg.Rollup)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment