test(models/domain): test instantiation

This commit is contained in:
2026-01-17 22:46:53 -03:00
parent 4c51822bf0
commit af84abe3f8
5 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { Chain } from './Chain';
import { Establishment } from './Establishment';
describe('Establishment', () => {
it('should create', () => {
expect(new Establishment(new Chain('mock', 'mock.jpg', 1), 'Mock street', 1)).toBeTruthy();
});
});