Add an algorithm to find Taylor series approximation of exponential f… (#1160)

This commit is contained in:
Prashal Ruchiranga
2022-10-20 17:10:22 +05:30
committed by GitHub
parent 58671861a5
commit 73bf91d7e1
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { exponentialFunction } from '../ExponentialFunction'
describe('Tests for exponential function', () => {
it('should be a function', () => {
expect(typeof exponentialFunction).toEqual('function')
})
it('should throw error for invalid input', () => {
expect(() => exponentialFunction(2, -34)).toThrow()
})
it('should return the exponential function of power of 5 and order of 21', () => {
const ex = exponentialFunction(5, 20)
expect(ex).toBe(148.4131078683383)
})
})