2023-11-03 12:26:09 -04:00
|
|
|
import { importForRuntime } from './runtime.ts';
|
|
|
|
|
2023-11-03 11:59:58 -04:00
|
|
|
export * from './runtime.ts';
|
|
|
|
export * from './strings.ts';
|
|
|
|
export type { ITestBase } from './test_base.ts';
|
2023-11-03 12:26:09 -04:00
|
|
|
|
|
|
|
export async function main() {
|
|
|
|
const { main } = await importForRuntime('./mod.ts');
|
|
|
|
await main();
|
|
|
|
}
|