blob: c3831cca15909bc57d2204981f2ed5a4e508470c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import esbuild from 'esbuild';
import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
describe('Bundle for browsers', async () => {
it('esbuild browser build should work', async () => {
try {
const result = await esbuild.build({
platform: 'browser',
entryPoints: ['@astrojs/markdown-remark'],
bundle: true,
write: false,
});
assert.ok(result.outputFiles.length > 0);
} catch (error) {
// Capture any esbuild errors and fail the test
assert.fail(error.message);
}
});
});
|