Working substrate backgrounds

This commit is contained in:
Lani Aung
2025-06-07 18:40:04 -07:00
parent 660dd859d1
commit 28610b0c3b
9 changed files with 128 additions and 92 deletions
+7
View File
@@ -16,4 +16,11 @@ describe("RGB", () => {
expect(value.green).toEqual(expected[index].green)
})
}
for (let index = 0; index < hexes.length; index++) {
it(`should return the same hex value: ${hexes[index].toString(16)}`, () => {
const value = expected[index].toHex()
expect(value).toEqual(hexes[index])
})
}
})