mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-01 09:52:40 +00:00
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import { Coordinate } from '../../domain/entities/coordinate';
|
|
|
|
describe('Coordinate entity', () => {
|
|
it('should be defined', () => {
|
|
const coordinate: Coordinate = new Coordinate(6, 47);
|
|
expect(coordinate).toBeDefined();
|
|
});
|
|
});
|