add tests to core

This commit is contained in:
2025-12-23 19:26:59 +01:00
parent 14d390b831
commit 7290fe69b5
72 changed files with 861 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/CarClass';
describe('racing/domain/entities/CarClass.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/CarId';
describe('racing/domain/entities/CarId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/CarLicense';
describe('racing/domain/entities/CarLicense.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/CarName';
describe('racing/domain/entities/CarName.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/DecisionNotes';
describe('racing/domain/entities/DecisionNotes.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/DefenseRequestedAt';
describe('racing/domain/entities/DefenseRequestedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/DefenseStatement';
describe('racing/domain/entities/DefenseStatement.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/FiledAt';
describe('racing/domain/entities/FiledAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/GameId';
describe('racing/domain/entities/GameId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/GameName';
describe('racing/domain/entities/GameName.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/Horsepower';
describe('racing/domain/entities/Horsepower.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ImageUrl';
describe('racing/domain/entities/ImageUrl.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/IncidentDescription';
describe('racing/domain/entities/IncidentDescription.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/JoinRequest';
describe('racing/domain/entities/JoinRequest.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LapNumber';
describe('racing/domain/entities/LapNumber.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LeagueCreatedAt';
describe('racing/domain/entities/LeagueCreatedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LeagueDescription';
describe('racing/domain/entities/LeagueDescription.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LeagueId';
describe('racing/domain/entities/LeagueId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LeagueName';
describe('racing/domain/entities/LeagueName.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LeagueOwnerId';
describe('racing/domain/entities/LeagueOwnerId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LeagueSocialLinks';
describe('racing/domain/entities/LeagueSocialLinks.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LiveryTemplateCreatedAt';
describe('racing/domain/entities/LiveryTemplateCreatedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LiveryTemplateId';
describe('racing/domain/entities/LiveryTemplateId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/LiveryTemplateUpdatedAt';
describe('racing/domain/entities/LiveryTemplateUpdatedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/Manufacturer';
describe('racing/domain/entities/Manufacturer.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/MembershipRole';
describe('racing/domain/entities/MembershipRole.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/MembershipStatus';
describe('racing/domain/entities/MembershipStatus.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ProtestComment';
describe('racing/domain/entities/ProtestComment.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ProtestDefense';
describe('racing/domain/entities/ProtestDefense.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ProtestIncident';
describe('racing/domain/entities/ProtestIncident.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ProtestStatus';
describe('racing/domain/entities/ProtestStatus.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ResultWithIncidents';
describe('racing/domain/entities/ResultWithIncidents.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ReviewedAt';
describe('racing/domain/entities/ReviewedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/ScoringPresetId';
describe('racing/domain/entities/ScoringPresetId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/SubmittedAt';
describe('racing/domain/entities/SubmittedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/TimeInRace';
describe('racing/domain/entities/TimeInRace.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/VideoUrl';
describe('racing/domain/entities/VideoUrl.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/Weight';
describe('racing/domain/entities/Weight.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/Year';
describe('racing/domain/entities/Year.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/season/SeasonId';
describe('racing/domain/entities/season/SeasonId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/season/index';
describe('racing/domain/entities/season/index.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/sponsor/Sponsor';
describe('racing/domain/entities/sponsor/Sponsor.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/sponsor/SponsorCreatedAt';
describe('racing/domain/entities/sponsor/SponsorCreatedAt.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/sponsor/SponsorEmail';
describe('racing/domain/entities/sponsor/SponsorEmail.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/sponsor/SponsorId';
describe('racing/domain/entities/sponsor/SponsorId.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/sponsor/SponsorName';
describe('racing/domain/entities/sponsor/SponsorName.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/entities/sponsor/Url';
describe('racing/domain/entities/sponsor/Url.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/value-objects/RecurrenceStrategyFactory';
describe('racing/domain/value-objects/RecurrenceStrategyFactory.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/racing/domain/value-objects/WeekdaySet';
describe('racing/domain/value-objects/WeekdaySet.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});