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) 287 B
import getYearFromTibetan from '../get-year-from-tibetan'; import { yearMock } from '../../__mocks__'; describe('getYearFromTibetan(tYear', () => { it('should return correct year attributes', () => { expect(getYearFromTibetan(yearMock.tibYear)).toMatchObject(yearMock); }); });