Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aletrn
/
driver.js
like
0
Running
App
Files
Files
Community
main
driver.js
/
tests
/
sum.test.ts
kamrify
Bump version 1.0.0-next.0
6cadce0
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
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
);
});
});