12 lines
358 B
TypeScript
12 lines
358 B
TypeScript
import { convertSizeToBytes } from '../src/utils'
|
|
|
|
describe('utils', () => {
|
|
it.each`
|
|
initialSize | expectedSize
|
|
${'1 B'} | ${1}
|
|
${'1 kB'} | ${1000}
|
|
${'1 mB'} | ${1000000}
|
|
`('converts sizes properly ($initialSize -> $expectedSize)', ({ initialSize, expectedSize }) => {
|
|
expect(convertSizeToBytes(initialSize)).toEqual(expectedSize)
|
|
})
|
|
})
|