File "pad.test.ts"
Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/string/pad/pad.test.ts
File
size: 337 B (337 B bytes)
MIME-type: text/x-java
Charset: utf-8
Download Open Edit Advanced Editor Back
import { pad } from './pad';
describe( 'pad', () => {
test( 'can pad a number with 0.', () => {
expect( pad( 1 ) ).toBe( '01' );
expect( pad( 5 ) ).toBe( '05' );
} );
test( 'should not pad if the number is greater than 9.', () => {
expect( pad( 10 ) ).toBe( '10' );
expect( pad( 11 ) ).toBe( '11' );
} );
} );