mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 12:05:41 +03:00
15 lines
501 B
TypeScript
15 lines
501 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { getBundleSize } from './utils/getBundleSize';
|
|
|
|
describe('zipObjectDeep bundle size', () => {
|
|
it('lodash-es', async () => {
|
|
const bundleSize = await getBundleSize('lodash-es', 'zipObjectDeep');
|
|
expect(bundleSize).toMatchInlineSnapshot(`7338`);
|
|
});
|
|
|
|
it('es-toolkit/compat', async () => {
|
|
const bundleSize = await getBundleSize('es-toolkit/compat', 'zipObjectDeep');
|
|
expect(bundleSize).toMatchInlineSnapshot(`992`);
|
|
});
|
|
});
|