module-import-rejection-body_FIXTURE.js (297B)
1 // |reftest| skip -- not a test file 2 // Copyright (C) 2019 Leo Balter. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 export default 42; 6 7 export const named = 'named'; 8 9 var rejection = Promise.reject(new TypeError('I reject this!')); 10 await rejection;