diff options
Diffstat (limited to 'Libraries/LibWeb/Tests/Window/Base64.js')
-rw-r--r-- | Libraries/LibWeb/Tests/Window/Base64.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Libraries/LibWeb/Tests/Window/Base64.js b/Libraries/LibWeb/Tests/Window/Base64.js deleted file mode 100644 index c272d70b74..0000000000 --- a/Libraries/LibWeb/Tests/Window/Base64.js +++ /dev/null @@ -1,19 +0,0 @@ -loadPage("file:///res/html/misc/blank.html"); - -afterInitialPageLoad(() => { - test("atob", () => { - expect(atob("YQ==")).toBe("a"); - expect(atob("YWE=")).toBe("aa"); - expect(atob("YWFh")).toBe("aaa"); - expect(atob("YWFhYQ==")).toBe("aaaa"); - expect(atob("/w==")).toBe("\xff"); - }); - - test("btoa", () => { - expect(btoa("a")).toBe("YQ=="); - expect(btoa("aa")).toBe("YWE="); - expect(btoa("aaa")).toBe("YWFh"); - expect(btoa("aaaa")).toBe("YWFhYQ=="); - expect(btoa("\xff")).toBe("/w=="); - }); -}); |