es-toolkit/benchmarks/bundle-size/camelCase.spec.ts
2024-08-11 10:54:13 +09:00

15 lines
475 B
TypeScript

import { describe, expect, it } from 'vitest';
import { getBundleSize } from './utils/getBundleSize';
describe('camelCase bundle size', () => {
it('lodash-es', async () => {
const bundleSize = await getBundleSize('lodash-es', 'camelCase');
expect(bundleSize).toMatchInlineSnapshot(`7293`);
});
it('es-toolkit', async () => {
const bundleSize = await getBundleSize('es-toolkit', 'camelCase');
expect(bundleSize).toMatchInlineSnapshot(`297`);
});
});