...

/

Testing What Users Can’t See

Testing What Users Can’t See

Let’s learn to write a request test.

We'll cover the following...

Setting up the test

Request tests are similar to feature tests in that they exist to test things in integration, but they differ from feature tests in their focus. They’re mostly concerned with what the user can’t see.

Note: There is an exception to this rule. If you have many feature tests that are testing variations of the same thing, you might want to move them to the request layer because they will run faster. You don’t have to, but it ...