it('should fail if the status code is incorrect', () => {
      const { pass } = matchers.toHaveStatus({ status: 204 }, 200)

      expect(pass).toBeFalsy()
    })