UNPKG
basic-math-utils
Version:
latest (0.3.4)
0.3.4
Basic math utilities for doing some basic math operations
basic-math-utils
/
lib
/
tests
/
index.test.js
9 lines
(7 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
var
_index =
require
(
'../index'
);
describe
(
'Math-utils'
,
function
(
) {
it
(
'rangeUtils should be exported'
,
function
(
) {
expect
(_index.
rangeUtils
.
constructor
.
name
).
toEqual
(
'RangeUtils'
); }); });