Files
directus/api/src/utils/get-string-byte-size.test.ts
Rijk van Zanten 19ddd89d8d Move unit tests to files they apply to (#15130)
* Move unit tests to files they apply to

* Remove tests root
2022-08-17 16:01:16 -04:00

8 lines
279 B
TypeScript

import { stringByteSize } from '../../src/utils/get-string-byte-size';
test('Returns correct byte size for given input string', () => {
expect(stringByteSize('test')).toBe(4);
expect(stringByteSize('🐡')).toBe(4);
expect(stringByteSize('👨‍👧‍👦')).toBe(18);
});