contentful-management
Version:
Client for Contentful's Content Management API
15 lines • 441 B
JavaScript
import { describe, expectTypeOf, it } from 'vitest';
describe('OptionalDefaults', () => {
it('does not add props', () => {
expectTypeOf().toMatchTypeOf();
});
it('adds default props if available', () => {
expectTypeOf().toMatchTypeOf();
});
it('handles intersection types', () => {
expectTypeOf().toMatchTypeOf();
});
it('handles union with intersection types', () => {
expectTypeOf().toMatchTypeOf();
});
});