Injest provides various helpers to write smaller and quickers tests for your
application. Helpers come in two flavors: snapshots and tests.
Assertions
Assertions helps you test things against something within your tests, by
default a Jest snapshot but you can usually provide an explicit result to test
against as last argument:
Tests are the same functions but wrapped in a way that let your write tests in a
smaller and cleaner manner. Underneath they call test with the provided
description and then call the function above with the rest of the arguments.