Get rid of Result
ci/woodpecker/manual/test Pipeline was successful

This commit is contained in:
2024-09-09 03:03:03 +02:00
parent c94e14434c
commit d74f3e2d43
3 changed files with 15 additions and 16 deletions
+4 -3
View File
@@ -15,13 +15,14 @@ test('b642a and a2b64 are reciprocal', () => {
const from_str = "Testing value !"
const from = btoa(from_str)
let buff = b642a(from).expect("Should encode valid b64")
let to = a2b64(buff)
let buff = b642a(from)
expect(buff).not.toBeNull()
let to = a2b64(buff!)
expect(to).toBe(from)
})
test("b642a doesn't accept invalid b64", () => {
b642a("pa'0ac'i !!").expect_err("Shouldn't unpack invalid b64")
expect(b642a("pa'0ac'i !!")).toBeNull()
})