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