astro/packages/webapi/test/structuredclone.js

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

29 lines
567 B
JavaScript
Raw Normal View History

import { expect } from 'chai'
import { polyfill } from '../mod.js'
describe('structuredClone', () => {
const target = {}
before(() => polyfill(target))
2022-03-07 21:37:50 +00:00
it('Includes structuredClone', () => {
expect(target).to.have.property('structuredClone').that.is.a('function')
})
it('Supports structuredClone usage', () => {
const obj = {
foo: 'bar',
baz: {
qux: 'quux',
},
}
const clone = target.structuredClone(obj)
expect(obj).to.not.equal(clone)
expect(obj.baz).to.not.equal(clone.baz)
expect(obj.baz.qux).to.equal(clone.baz.qux)
})
})