9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
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();
|
|
});
|
|
});
|