/** Globs that represent the test entry points. */
include: ["assembly/__tests__/**/*.spec.ts"],
/** Modules that should be added to the compilation */
add: ["assembly/__tests__/**/*.include.ts"],
/** Compiler flags for each module. */
/** To output a wat file, uncomment the following line. */
// "--textFile": ["output.wat"],
/** A runtime must be provided here. */
"--runtime": ["full"], // Acceptable values are: full, half, stub (arena), and none
/** Disclude tests that match this regex. */
disclude: [/node_modules/],
/** Add your required AssemblyScript imports here in this function. */
imports(memory, createImports, instantiateSync, binary) {
let result; // Imports can reference this
// put your web assembly imports here, and return the module
result = instantiateSync(binary, createImports(myImports));
// return the entire result object from the loader
// uncomment the following section if you require wasi support
// put your preopen's here
// let as-pect finish what it needs to finish
* To create your own custom reporter, please check out the Core API.
// reporter: new CustomReporter(),
/** Output the binary wasm file: [testname].spec.wasm */