mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 10:36:14 -04:00
15 lines
546 B
TypeScript
15 lines
546 B
TypeScript
![]() |
import { expect, describe, 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);
|
||
|
});
|
||
|
});
|
||
|
});
|