import { describe, it, expect, beforeEach } from 'vitest';

// Integration skeleton: create employe, create contrat, attempt delete employe -> expect 409

describe('Integration — employee dependency (delete conflict)', () => {
  beforeEach(async () => {
    // TODO: setup DB / clean state
    
  });

  it('should return 409 when deleting an employee with dependant contrats - TODO', async () => {
    // Arrange

    // Act

    // Assert
    expect(true).toBeTruthy();
  });
});
