Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import { makeDefaultExo } from '@metamask/kernel-utils/exo';
import type { TestPowers } from '../test-powers.ts';
/**
* This vat is used to test that throwing from a remotable method rejects the
* result.
*
* @param vatPowers - The vat powers.
* @param vatPowers.logger - The logger for this vat.
* @returns The root object for this vat.
*/
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export function buildRootObject({ logger }: TestPowers) {
const { log } = logger.subLogger({ tags: ['test'] });
return makeDefaultExo('root', {
async foo(reject: boolean) {
if (reject) {
log('reject');
throw new Error('error: bar');
}
log('resolve');
return 'bar';
},
});
}
|