UNPKG
@jsse/quick-maths
Version:
latest (0.0.2)
0.0.2
0.0.1
quick-maths
github.com/jessekrubin/ts-template
jessekrubin/ts-template
@jsse/quick-maths
/
src
/
tests
/
quick-maths.test.ts
10 lines
(8 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ describe, expect, test }
from
"vitest"
;
import
{ quickmaths }
from
"../quick-maths.js"
;
describe
(
"tests"
,
() =>
{
test
(
"test"
,
async
() => {
const
three =
quickmaths
();
expect
(three).
toEqual
(
3
); }); });