13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
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
|
|
}); |