import { faker } from '@faker-js/faker'; import { ActionDataFaker } from '@test/fakers/action-data.faker'; import { Action, ActionRaw } from '@3cr/viewer-types-ts'; export class ActionFaker { static random(): Action { return { ActionType: faker.number.int(), ActionData: ActionDataFaker.random(), }; } static randomRaw(): ActionRaw { return { ActionType: faker.number.int(), ActionData: JSON.stringify(ActionDataFaker.random()), }; } }