11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst assert = require('assert'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci// To match browser behaviour, interval should continue 71cb0ef41Sopenharmony_ci// being rescheduled even if it throws. 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_cilet count = 2; 101cb0ef41Sopenharmony_ciconst interval = setInterval(() => { throw new Error('IntervalError'); }, 1); 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_ciprocess.on('uncaughtException', common.mustCall((err) => { 131cb0ef41Sopenharmony_ci assert.strictEqual(err.message, 'IntervalError'); 141cb0ef41Sopenharmony_ci if (--count === 0) { 151cb0ef41Sopenharmony_ci clearInterval(interval); 161cb0ef41Sopenharmony_ci } 171cb0ef41Sopenharmony_ci}, 2)); 18