mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-25 15:55:18 +00:00
a1f1f0d957
* add e2e test for cosmos coin conversion * add e2e test for eip712 signing of converts * update kvtool
13 lines
424 B
Go
13 lines
424 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)
|
|
}
|