prepare-test-env-ava.js
1 /** 2 * Like prepare-test-env but also sets up ses-ava and provides 3 * the ses-ava `test` function to be used as if it is the ava 4 * `test` function. 5 */ 6 7 import '@endo/init/pre-bundle-source.js'; 8 import '@agoric/zoe/tools/prepare-test-env.js'; 9 // eslint-disable-next-line import/no-unresolved -- https://github.com/avajs/ava/issues/2951 10 import rawTest from 'ava'; 11 12 // XXX wrapTest not working https://github.com/endojs/endo/issues/1235 13 // import { wrapTest } from '@endo/ses-ava'; 14 15 export const test = rawTest;