tiki/internal/teststatuses/teststatuses.go
2026-03-04 11:27:13 -05:00

15 lines
578 B
Go

package teststatuses
import "github.com/boolean-maybe/tiki/config"
// Init registers the canonical test status set.
// Call this from init() in each package's testinit_test.go.
func Init() {
config.ResetStatusRegistry([]config.StatusDef{
{Key: "backlog", Label: "Backlog", Emoji: "📥", Default: true},
{Key: "ready", Label: "Ready", Emoji: "📋", Active: true},
{Key: "in_progress", Label: "In Progress", Emoji: "⚙️", Active: true},
{Key: "review", Label: "Review", Emoji: "👀", Active: true},
{Key: "done", Label: "Done", Emoji: "✅", Done: true},
})
}