Files
argo-cd/gitops-engine/pkg/sync/syncwaves/waves_test.go
Leonardo Luz Almeida bcc0243f1e prepare repo for migration to ArgoCD repo
Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com>
2025-09-23 10:05:42 -04:00

16 lines
440 B
Go

package syncwaves
import (
"testing"
"github.com/stretchr/testify/assert"
testingutils "github.com/argoproj/gitops-engine/pkg/utils/testing"
)
func TestWave(t *testing.T) {
assert.Equal(t, 0, Wave(testingutils.NewPod()))
assert.Equal(t, 1, Wave(testingutils.Annotate(testingutils.NewPod(), "argocd.argoproj.io/sync-wave", "1")))
assert.Equal(t, 1, Wave(testingutils.Annotate(testingutils.NewPod(), "helm.sh/hook-weight", "1")))
}