import { assertType, describe, it } from 'vitest'; import * as __Services from '../../src/core/structures/default-services'; import * as Contracts from '../../src/core/interfaces'; describe('default contracts', () => { it('should satisfy contracts', () => { assertType(new __Services.DefaultLogging()); assertType(new __Services.DefaultErrorHandling()); }); });