mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 21:47:36 +00:00
15 lines
578 B
Go
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},
|
|
})
|
|
}
|