Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PlanningEventManager.test.js 279B

12345678910
  1. import React from 'react';
  2. import PlanningEventManager from "../PlanningEventManager";
  3. test('time test', () => {
  4. expect(PlanningEventManager.formatTime("1:2")).toBe("1:2");
  5. });
  6. test('time test 2', () => {
  7. expect(PlanningEventManager.formatTime("1:2")).toBe("2:2");
  8. });