mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
fix(op_crate/web): fix atob to throw spec aligned DOMException (#8798)
This commit is contained in:
parent
1a6ce29f3d
commit
b0821fe9ce
2 changed files with 16 additions and 1 deletions
|
@ -50,6 +50,21 @@ unitTest(function atobThrows2(): void {
|
|||
assert(threw);
|
||||
});
|
||||
|
||||
unitTest(function atobThrows3(): void {
|
||||
let threw = false;
|
||||
try {
|
||||
atob("foobar!!");
|
||||
} catch (e) {
|
||||
if (
|
||||
e instanceof DOMException &&
|
||||
e.toString().startsWith("InvalidCharacterError:")
|
||||
) {
|
||||
threw = true;
|
||||
}
|
||||
}
|
||||
assert(threw);
|
||||
});
|
||||
|
||||
unitTest(function btoaFailed(): void {
|
||||
const text = "你好";
|
||||
assertThrows(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue