13 lines
352 B
TypeScript
Raw Permalink Normal View History

2023-05-31 16:10:53 +08:00
import { expect } from 'chai';
import { describe, it } from 'mocha';
describe('yourFunction', () => {
it('should return the correct result for input 1', () => {
const input = 1;
const expectedResult = 'expectedResult';
const result = 'expectedResult';
expect(result).to.equal(expectedResult);
});
// Add more test cases here
});