Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 769 Bytes

Helpers.md

File metadata and controls

36 lines (30 loc) · 769 Bytes

Helpers

Basic

Basic helpers that return what has been mounted OR are simply enzyme shortcuts.

tester.instance // The instance of the tested component
tester.component // The tested component
tester.html() // Retrieve mounted component html
tester.text() // Retrieve mounted component text
tester.wrapper // return of the enzyme mount()
tester.update(); // shortcut for enzyme update();

sleep

/* await 20ms, useful when triggering mocked Api Calls */
tester.sleep();

refresh

/*
  Calls both tester.sleep() and tester.update() to
  wait for an action to be fully complete.
  e.g. click + api call + render update.
*/
tester.refresh();

debug

// render tester.wrapper.debug(); in a console log
tester.debug();