tsbundle/test/test.ts
2023-08-26 15:08:23 +02:00

18 lines
379 B
TypeScript

import { expect, tap } from '@push.rocks/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();