Spaces:
Paused
Paused
File size: 276 Bytes
9ada4bc |
1 2 3 4 5 6 7 8 9 10 11 |
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()
})
|