1'use strict'; 2const { it, after } = require('node:test'); 3 4after(() => { 5 throw new Error('this should fail the test') 6}); 7 8it('this is a test', () => { 9 console.log('this is a test') 10}); 11