UNPKG
@hamgom95/bikecalc
Version:
latest (7.1.1)
7.1.1
7.1.0
7.0.0
6.0.0
5.0.0
4.0.0
3.0.0
2.0.0
bicycle gearing, power and aerodynamics calculator
@hamgom95/bikecalc
/
src
/
aero.spec.js
11 lines
(8 loc)
•
300 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{expect}
from
"chai"
;
import
{ aeroDrag }
from
"./aero"
;
import
{ airDensitySeaLevel }
from
"./constants"
;
describe
(
'aero'
,
function
(
) {
it
(
'aeroDrag()'
,
function
(
) {
expect
(
aeroDrag
(
0.88
,
0.32
, airDensitySeaLevel,
10.28
)).
to
.
approximately
(
18.227
,
0.01
); }); });