mirror of
https://github.com/strapi/strapi.git
synced 2025-11-25 14:41:15 +00:00
34 lines
984 B
JavaScript
34 lines
984 B
JavaScript
import formatBytes from '../formatBytes';
|
|
|
|
describe('UPLOAD | components | EditForm | utils', () => {
|
|
describe('formatBytes', () => {
|
|
it('should return 0B', () => {
|
|
expect(formatBytes(0)).toEqual('0B');
|
|
});
|
|
|
|
it('should return 0B if less than 1 bytes is passed', () => {
|
|
expect(formatBytes(0.9)).toEqual('0B');
|
|
});
|
|
|
|
it('should return 1KB if 1024 Bytes is passed', () => {
|
|
expect(formatBytes(1024)).toEqual('1KB');
|
|
});
|
|
|
|
it("should return 1KB if '1024' Bytes is passed", () => {
|
|
expect(formatBytes('1024')).toEqual('1KB');
|
|
});
|
|
|
|
it('should return 1.21KB if 1034 Bytes is passed', () => {
|
|
expect(formatBytes(1234)).toEqual('1.21KB');
|
|
});
|
|
|
|
it('should return 1.21KB if 1034 Bytes is passed with 3 decimals', () => {
|
|
expect(formatBytes(1234, 3)).toEqual('1.205KB');
|
|
});
|
|
|
|
it('should return 1 MB if 1.1e+6 Bytes is passed', () => {
|
|
expect(formatBytes(1100000, 0)).toEqual('1MB');
|
|
});
|
|
});
|
|
});
|