import { parseAction } from '@/functions/parsers/parseAction'; import { ActionFaker } from '@test/fakers/action.faker'; describe('parseAction tests', () => { it('should parse', () => { const result = parseAction(ActionFaker.randomRaw()); expect(typeof result.ActionData).not.toBe('string'); }); });