Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aletrn
/
driver.js
like
0
Running
App
Files
Files
Community
ec183be
driver.js
/
test
/
sum.test.ts
kamrify
Add basic highlight functionality
aa3b624
almost 2 years ago
raw
Copy download link
history
blame
200 Bytes
import
{ describe, expect, it }
from
"vitest"
;
import
{ sum }
from
"../src/sum"
;
describe
(
"add"
,
() =>
{
it
(
"should sum of 2 and 3 equals to 5"
,
() =>
{
expect
(
sum
(
2
,
3
)).
toEqual
(
5
);
});
});