UNPKG

tibetan-date-calculator

Version:

A library to calculate tibetan calendar details. It is based on Svante Janson's paper www2.math.uu.se/~svante/papers/calendars/tibet.pdf

9 lines (7 loc) 263 B
import meanDate from '../mean-date'; import { astroMock } from '../../__mocks__'; describe('meanDate()', () => { it('should return the correct mean date', () => { expect(meanDate(astroMock.day, astroMock.monthCount)).toEqual(astroMock.meanDate); }); });