ant-design/tests/shared/demoTestContext.ts
renovate[bot] 863f61d908
chore(deps): update dependency eslint to v9 (#50690)
Co-authored-by: afc163 <afc163@gmail.com>
2024-09-19 03:30:19 +08:00

12 lines
361 B
TypeScript

import * as React from 'react';
import type { TriggerProps } from '@rc-component/trigger';
// We export context here is to avoid testing-lib inject `afterEach` in `tests/index.test.js`
// Which breaks the circle deps
export const TriggerMockContext = React.createContext<
| (Partial<TriggerProps> & {
mock?: boolean;
})
| undefined
>(undefined);