agents-js-oasst / src /index.test.ts
nsarrazin's picture
nsarrazin HF staff
poc with dockerfile & server-side
2bcd13d
raw
history blame
No virus
148 Bytes
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});