This commit is contained in:
2025-12-17 00:33:13 +01:00
parent 8c67081953
commit f01e01e50c
186 changed files with 9242 additions and 1342 deletions

View File

@@ -0,0 +1,29 @@
import { describe, it, expect } from 'vitest';
import { IRacingId } from './IRacingId';
describe('IRacingId', () => {
it('should create an iRacing id', () => {
const id = IRacingId.create('12345');
expect(id.toString()).toBe('12345');
});
it('should throw on empty id', () => {
expect(() => IRacingId.create('')).toThrow('iRacing ID is required');
});
it('should throw on whitespace id', () => {
expect(() => IRacingId.create(' ')).toThrow('iRacing ID is required');
});
it('should equal same id', () => {
const id1 = IRacingId.create('12345');
const id2 = IRacingId.create('12345');
expect(id1.equals(id2)).toBe(true);
});
it('should not equal different id', () => {
const id1 = IRacingId.create('12345');
const id2 = IRacingId.create('67890');
expect(id1.equals(id2)).toBe(false);
});
});