it-tools/src/tools/text-statistics/text-statistics.service.test.ts
2023-05-28 23:29:14 +02:00

14 lines
546 B
TypeScript

import { describe, expect, it } from 'vitest';
import { getStringSizeInBytes } from './text-statistics.service';
describe('text-statistics', () => {
describe('getStringSizeInBytes', () => {
it('should return the size of a string in bytes', () => {
expect(getStringSizeInBytes('')).toEqual(0);
expect(getStringSizeInBytes('a')).toEqual(1);
expect(getStringSizeInBytes('aa')).toEqual(2);
expect(getStringSizeInBytes('😀')).toEqual(4);
expect(getStringSizeInBytes('aaaaaaaaaa')).toEqual(10);
});
});
});