application-amicale/utils/__test__/PlanningEventManager.test.js

11 lines
279 B
JavaScript
Raw Normal View History

2020-03-20 22:31:27 +01:00
import React from 'react';
import PlanningEventManager from "../PlanningEventManager";
test('time test', () => {
expect(PlanningEventManager.formatTime("1:2")).toBe("1:2");
});
test('time test 2', () => {
expect(PlanningEventManager.formatTime("1:2")).toBe("2:2");
});