Skip to content

Commit

Permalink
Add nfr flag to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
bjee19 committed Aug 13, 2024
1 parent a10076e commit a3504d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/suite/reconfig_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,10 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
getStartTime := func() time.Time { return startTime }
modifyStartTime := func() { startTime = startTime.Add(500 * time.Millisecond) }

setup(getDefaultSetupCfg())
cfg := getDefaultSetupCfg()
cfg.nfr = true
setup(cfg)

podNames, err := framework.GetReadyNGFPodNames(k8sClient, ngfNamespace, releaseName, timeoutConfig.GetTimeout)
Expect(err).ToNot(HaveOccurred())
Expect(podNames).To(HaveLen(1))
Expand Down

0 comments on commit a3504d9

Please sign in to comment.