Skip to content

Commit 9651427

Browse files
committed
test: remove console.log
1 parent f57f3f1 commit 9651427

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/evolution/test/Data.prop.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,8 @@ describe("Data Property Tests", () => {
3232
it("should generate valid PlutusBytes data and roundtrip", () => {
3333
FastCheck.assert(
3434
FastCheck.property(genPlutusBytes(), (value) => {
35-
console.log("Testing PlutusBytes roundtrip with value:", value)
3635
const cborHex = Data.Codec().Encode.cborHex(value)
37-
console.log("CBOR Hex:", cborHex)
3836
const decoded = Data.Codec().Decode.cborHex(cborHex)
39-
console.log("Decoded value:", decoded)
4037
expect(Data.isBytes(value)).toBe(true)
4138
expect(decoded).toEqual(value)
4239
})

0 commit comments

Comments
 (0)