import { describe, it, expect } from 'vitest';
import { config } from '../../src/config.js';

describe('config', () => {
  it('should have default port 8001', () => {
    expect(config.PORT).toBe(8001);
  });

  it('should have tick interval of 1ms', () => {
    expect(config.TICK_INTERVAL).toBe(1);
  });

  it('should have 6 speed values', () => {
    expect(config.SPEED_BUTTON_VALUES).toHaveLength(6);
  });
});
