mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
38 lines
350 B
JavaScript
38 lines
350 B
JavaScript
/* eslint-env node */
|
|
// dummy lines to make sure exception line number is well below parent test script
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
|
|
|
|
function myfunc() {
|
|
throw new Error('exception on line 32 in myfunc');
|
|
}
|
|
module.exports = myfunc;
|
|
if (Script[module.filename] === 'throw') {
|
|
myfunc();
|
|
}
|