mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
15 lines
595 B
Go
15 lines
595 B
Go
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
|
|
}
|