File "focus.test.ts"

Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/dom/focus/focus.test.ts
File size: 376 B (376 B bytes)
MIME-type: text/x-java
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

import { focus } from './focus';


describe( 'focus', () => {
  test( 'can make an element focused if it is focusable.', () => {
    const div = document.createElement( 'div' );

    div.tabIndex = 0;
    document.body.appendChild( div );

    expect( document.activeElement ).not.toBe( div );

    focus( div );

    expect( document.activeElement ).toBe( div );
  } );
} );