jestで関数ごとではなく、どこかしたらでthrow Errorの発生を予測した場合
const Function = require('../function');
const config = require('../config.js');
同期
describe('Timeout error', () => {
const timeOutms = 60000;
it('will be timeout', async () => {
const function = new Function(config.function);
let bThrow = false;
try {
await function.main();
} catch (e) {
if (e.message.indexOf('timeout') >= 0) bThrow = true;
}
expect(bThrow).toBe(true);
}, timeOutms);
});
EventEmitterを利用している場合
describe('Timeout error', () => {
const timeOutms = 60000;
it('will be timeout', (done) => {
function onError(data) {
try {
expect(data.error.message.indexOf('timeout')).toBeGreaterThanOrEqual(0);
done();
} catch (error) {
done(error);
}
}
const function = new Function(config.function);
function.main(input);
function.once('error', onError);
}, timeOutms);
});
Author And Source
この問題について(jestで関数ごとではなく、どこかしたらでthrow Errorの発生を予測した場合), 我々は、より多くの情報をここで見つけました https://qiita.com/natuko_1/items/c1df1c834bbc3c1edb2f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .