Skip to content

Commit

Permalink
fixup! Re-add dummy test
Browse files Browse the repository at this point in the history
  • Loading branch information
mprimi committed Sep 24, 2024
1 parent 6bc808b commit 1289547
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion server/jetstream_cluster_long_running_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,14 @@ import (

func TestLongDummy(t *testing.T) {
// Dummy test to verify tests set of tests are running as expected
t.Logf("Pass!")

t.Run("Passing sub-test", func(t *testing.T) {
t.Logf("Pass!")
})

t.Run("Failing sub-test", func(t *testing.T) {
t.Fatalf("Fail!")
})
}

func TestLongJetStreamClusterRestartThenScaleStreamReplicas(t *testing.T) {
Expand Down

0 comments on commit 1289547

Please sign in to comment.