There was an error while loading. Please reload this page.
mockActor is a method designed to make it easy to create fake actors for testing.
import { beforeEach, afterEach, describe, expect, it, vi } from 'vitest' import { mockActor } from '@revolutionarygamesco/common-foundryvtt/mocks' const actor = mockActor({ name: 'John Doe', documentName: 'Actor', type: 'character' })