Sylvain Filoni
update gradio client
9ada4bc
raw
history blame contribute delete
276 Bytes
import { it, expect } from 'vitest'
import { parseJson } from './parseJson'
it('parses a given string into JSON', () => {
expect(parseJson('{"id":1}')).toEqual({ id: 1 })
})
it('returns null given invalid JSON string', () => {
expect(parseJson('{"o:2\'')).toBeNull()
})