NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/tape/example/throw.js
2023-09-14 14:47:11 +08:00

12 lines
167 B
Java

'use strict';
var test = require('../');
test('throw', function (t) {
t.plan(2);
setTimeout(function () {
throw new Error('doom');
}, 100);
});