Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
fast-fail
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Jul 12, 2024
1 parent ba8a30d commit 0589692
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ func TestLicensesStore(t *testing.T) {
})
})

// No point continuing if test licenses did not create, all tests after this
// will fail
if t.Failed() {
t.FailNow()
}

t.Run("List", func(t *testing.T) {
listedLicenses, err := licenses.List(ctx, subscriptions.ListLicensesOpts{})
require.NoError(t, err)
Expand Down

0 comments on commit 0589692

Please sign in to comment.