mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
add teststatuses
This commit is contained in:
parent
8ff8cd578d
commit
4a1485e342
1 changed files with 15 additions and 0 deletions
15
internal/teststatuses/teststatuses.go
Normal file
15
internal/teststatuses/teststatuses.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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},
|
||||
})
|
||||
}
|
||||
Loading…
Reference in a new issue