astro/packages/webapi/test/base64.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
672 B
JavaScript
Raw Normal View History

import { expect } from 'chai'
import { polyfill } from '../mod.js'
describe('Base64', () => {
const target = {}
2022-03-07 21:37:50 +00:00
before(() => polyfill(target))
2022-03-07 21:37:50 +00:00
it('Supports Base64 Methods', () => {
expect(target).to.have.property('atob').that.is.a('function')
expect(target).to.have.property('btoa').that.is.a('function')
})
2022-03-07 21:37:50 +00:00
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)
2022-03-07 21:37:50 +00:00
expect(a).to.equal('SGVsbG8sIHdvcmxk')
expect(b).to.equal('Hello, world')
})
})