UNPKG

keplerjs

Version:

Kepler solver to compute a celestial body position over the surface of the earth.

12 lines (8 loc) 279 B
const { expect } = require("@jest/globals"); const { obtelements } = require("../Core/obtelements"); describe('Transform to IU system:', () => { // First test test('No entry should return Error ', () => { expect(obtelements()).toBeInstanceOf(Error) }); })