mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
19 lines
678 B
Go
19 lines
678 B
Go
package e2e_test
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// TestUpgradeHandler can be used to run tests post-upgrade. If an upgrade is enabled, all tests
|
|
// are run against the upgraded chain. However, this file is a good place to consolidate all
|
|
// acceptance tests for a given set of upgrade handlers.
|
|
func (suite *IntegrationTestSuite) TestUpgradeHandler() {
|
|
suite.SkipIfUpgradeDisabled()
|
|
fmt.Println("An upgrade has run!")
|
|
suite.True(true)
|
|
|
|
// Uncomment & use these contexts to compare chain state before & after the upgrade occurs.
|
|
// beforeUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight - 1)
|
|
// afterUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight)
|
|
}
|