private static randomColorSegment()

in src/common/mockFactory.ts [55:58]


    private static randomColorSegment(): string {
        const num = Math.floor(Math.random() * 255);
        return num.toString(16);
    }