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();
|
||
|
});
|
||
|
});
|