axios-miniprogram/test/cancel/Cancel.test.ts

16 lines
337 B
TypeScript
Raw Normal View History

2020-04-20 22:33:15 +08:00
import Cancel from '../../src/cancel/Cancel';
describe('测试 src/cancel/Cancel.ts', () => {
it('默认', () => {
const cancel = new Cancel();
expect(cancel.toString()).toBe('Cancel');
});
it('自定义', () => {
const cancel = new Cancel('custom');
expect(cancel.toString()).toBe('Cancel: custom');
});
});