Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c39b293c84b08b706f862ce636444339488fa91d
/
.
/
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
);
});
});