2018-04-08T15:31:39Z||2018-04-08T15:31:39Z
用toThrow
:
test('error', () => {
expect(() => {
doit('wrong parameter');
}).toThrow();
});
2018-04-08T15:31:39Z||2018-04-08T15:31:39Z
用toThrow
:
test('error', () => {
expect(() => {
doit('wrong parameter');
}).toThrow();
});