• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

foomo / contentserver / 15108131092

19 May 2025 08:29AM UTC coverage: 41.461% (-20.9%) from 62.396%
15108131092

push

github

web-flow
Merge pull request #49 from foomo/feature/build-with-safe-tag

feat: build with safe tag

15 of 43 new or added lines in 5 files covered. (34.88%)

376 existing lines in 11 files now uncovered.

755 of 1821 relevant lines covered (41.46%)

9.24 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/content/node.go
1
package content
2

3
// Node a node in a content tree
4
type Node struct {
5
        Item  *Item            `json:"item"`
6
        Nodes map[string]*Node `json:"nodes"`
7
        Index []string         `json:"index"`
8
}
9

10
// NewNode constructor
UNCOV
11
func NewNode() *Node {
×
UNCOV
12
        return &Node{
×
UNCOV
13
                Item:  NewItem(),
×
UNCOV
14
                Nodes: map[string]*Node{},
×
UNCOV
15
        }
×
UNCOV
16
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc