mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
595 B
14 lines
595 B
package e2e |
|
|
|
// CleanupSuite is the boilerplate that can be used after tests on ginkgo were run, on the SynchronizedAfterSuite step. |
|
// Similar to SynchronizedBeforeSuite, we want to run some operations only once (such as collecting cluster logs). |
|
// Here, the order of functions is reversed; first, the function which runs everywhere, |
|
// and then the function that only runs on the first Ginkgo node. |
|
func CleanupSuite() { |
|
// Run on all Ginkgo nodes |
|
} |
|
|
|
// AfterSuiteActions are actions that are run on ginkgo's SynchronizedAfterSuite |
|
func AfterSuiteActions() { |
|
// Run only Ginkgo on node 1 |
|
}
|
|
|