Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type FixtureCompany } from '../fixtures';
import { company } from './company';
import { customObjectDefinitions } from './customObjectDefinitions';
import { customObjects } from './customObjects';
import { periods } from './periods';
import { plans } from './plans';
import { relationships } from './relationships';
import { statements } from './statements';
import { users } from './users';
export const companyFixtures = {
id: '9f9b148d-d569-4d13-9243-7e886fe01235',
company,
customObjects,
customObjectDefinitions,
periods,
plans,
relationships,
statements,
users,
highlightedKpis: [],
} as const satisfies FixtureCompany;
|