File "unit.test.ts"
Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/dom/unit/unit.test.ts
File
size: 377 B (377 B bytes)
MIME-type: text/x-java
Charset: utf-8
Download Open Edit Advanced Editor Back
import { unit } from './unit';
describe( 'unit', () => {
test( 'can append `px` if the value is number.', () => {
expect( unit( 1 ) ).toBe( '1px' );
expect( unit( 1.8 ) ).toBe( '1.8px' );
} );
test( 'should return the value itself if it is string.', () => {
expect( unit( '10vh' ) ).toBe( '10vh' );
expect( unit( '10em' ) ).toBe( '10em' );
} );
} );