[ci] format
This commit is contained in:
parent
a961aa3c2f
commit
bcc52540a5
1 changed files with 3 additions and 3 deletions
|
@ -43,17 +43,17 @@ describe('serialize', () => {
|
|||
expect(serializeProps(input)).to.equal(output);
|
||||
});
|
||||
it('serializes a Uint8Array', () => {
|
||||
const input = { a: new Uint8Array([1,2,3]) };
|
||||
const input = { a: new Uint8Array([1, 2, 3]) };
|
||||
const output = `{"a":[8,"[1,2,3]"]}`;
|
||||
expect(serializeProps(input)).to.equal(output);
|
||||
});
|
||||
it('serializes a Uint16Array', () => {
|
||||
const input = { a: new Uint16Array([1,2,3]) };
|
||||
const input = { a: new Uint16Array([1, 2, 3]) };
|
||||
const output = `{"a":[9,"[1,2,3]"]}`;
|
||||
expect(serializeProps(input)).to.equal(output);
|
||||
});
|
||||
it('serializes a Uint32Array', () => {
|
||||
const input = { a: new Uint32Array([1,2,3]) };
|
||||
const input = { a: new Uint32Array([1, 2, 3]) };
|
||||
const output = `{"a":[10,"[1,2,3]"]}`;
|
||||
expect(serializeProps(input)).to.equal(output);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue