Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
0736098c9e1f9f9d580e3c1c87dcc13a56aee1b9
/
.
/
build_tests
/
basic_test.ts
blob: 298f928d677fbf40ffd84348e2cc429b349128dd [
file
] [
log
] [
blame
]
import
{
add
}
from
'./basic'
;
describe
(
'add'
,
()
=>
{
it
(
'should sum numbers'
,
()
=>
{
expect
(
3
+
4
).
toEqual
(
7
);
});
it
(
'should not sum numbers'
,
()
=>
{
expect
(
add
(
3
,
3
)).
not
.
toEqual
(
7
);
});
});