Commit b9ca24ef authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #5596 from ethereum-optimism/aj/fpp-allow-new-named-configs

op-program: Allow new named chains to be added without the op-geth config
parents 34d89aca 874e057e
......@@ -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