import { runTestSuite } from '@autoblocks/client/testing/v2';
runTestSuite<MyTestCase, string>({
id: 'my-test-suite',
testCases: [
{
input: 'hello world',
expectedOutput: 'hello world',
},
],
testCaseHash: ['input'],
fn: ({ testCase }) => testCase.input,
evaluators: [new Accuracy()],
});