aboutsummaryrefslogtreecommitdiff
path: root/packages/webapi/test/base64.js
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-01-10 15:29:06 +0100
committerGravatar GitHub <noreply@github.com> 2023-01-10 15:29:06 +0100
commitc55fbcb8edca1fe118a44f68c9f9436a4719d171 (patch)
tree2bde21dfe19aee8a984a3f5b678b2ee6603876da /packages/webapi/test/base64.js
parentcf5dc2adae04c1ab3fcf95bb2426e82733737852 (diff)
downloadastro-c55fbcb8edca1fe118a44f68c9f9436a4719d171.tar.gz
astro-c55fbcb8edca1fe118a44f68c9f9436a4719d171.tar.zst
astro-c55fbcb8edca1fe118a44f68c9f9436a4719d171.zip
Remove more unnecessary polyfills from webapi for Node 16 (#5814)
* feat(webapi): Remove unnecessary polyfills now that we dropped support for Node 14 * feat(webapi): Removed more unnecessary polyfills for Node 16 * chore: changeset
Diffstat (limited to 'packages/webapi/test/base64.js')
-rw-r--r--packages/webapi/test/base64.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/webapi/test/base64.js b/packages/webapi/test/base64.js
deleted file mode 100644
index 8881784dc..000000000
--- a/packages/webapi/test/base64.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import { expect } from 'chai'
-import { polyfill } from '../mod.js'
-
-describe('Base64', () => {
- const target = {}
-
- before(() => polyfill(target))
-
- it('Supports Base64 Methods', () => {
- expect(target).to.have.property('atob').that.is.a('function')
- expect(target).to.have.property('btoa').that.is.a('function')
- })
-
- it('Supports atob(data)', () => {
- const a = 'SGVsbG8sIHdvcmxk'
- const b = target.atob(a)
-
- expect(a).to.equal('SGVsbG8sIHdvcmxk')
- expect(b).to.equal('Hello, world')
- })
-
- it('Supports btoa(data)', () => {
- const b = 'Hello, world'
- const a = target.btoa(b)
-
- expect(a).to.equal('SGVsbG8sIHdvcmxk')
- expect(b).to.equal('Hello, world')
- })
-})