All files / kernel-test/src/vats rejection-bootstrap.ts

0% Statements 0/6
100% Branches 0/0
0% Functions 0/3
0% Lines 0/6

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 { E } from '@endo/eventual-send';
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 bootstrap({ rejector }: { rejector: unknown }) {
      await E(rejector).foo(false).then(log);
      await E(rejector)
        .foo(true)
        .catch(() => log('err'));
      await E(rejector).foo(false).then(log);
    },
  });
}