Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
nsarrazin
/
agents-js-oasst
like
5
Paused
App
Files
Files
Community
73b8e0b
agents-js-oasst
/
src
/
index.test.ts
nsarrazin
HF staff
poc with dockerfile & server-side
2bcd13d
over 1 year ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
{ describe, it, expect }
from
'vitest'
;
describe
(
'sum test'
,
() =>
{
it
(
'adds 1 + 2 to equal 3'
,
() =>
{
expect
(
1
+
2
).
toBe
(
3
);
});
});