File "rtl.test.ts"

Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/components/Layout/test/rtl.test.ts
File size: 448 B (448 B bytes)
MIME-type: text/x-java
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

import { RTL } from '../../../constants/directions';
import { init } from '../../../test';


describe( 'Layout in the RTL mode', () => {
  test( 'can set margin as a gap.', () => {
    const splide = init( { direction: RTL, gap: '2rem' } );

    expect( splide.Components.Elements.slides[ 0 ].style.marginLeft ).toBe( '2rem' );
    expect( splide.Components.Elements.slides[ 1 ].style.marginLeft ).toBe( '2rem' );
    splide.destroy();
  } );
} );