blob: 0503cf904109b9517e88675cbc8373b8b778dc68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import { expect } from 'chai'
import { polyfill } from '../mod.js'
describe('structuredClone', () => {
const target = {}
before(() => polyfill(target))
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)
})
})
|