tsbundle/test/test.ts
2022-05-04 17:13:52 +02:00

18 lines
378 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as tsbundle from '../ts/index.js';
tap.test('should bundle with esbuild', async () => {
const tsbundleInstance = new tsbundle.TsBundle();
await tsbundleInstance.build(
process.cwd() + '/test',
'./ts_web/index.ts',
'./dist_manual/test.js',
{
bundler: 'esbuild'
}
);
});
tap.start();