module-rest icon indicating copy to clipboard operation
module-rest copied to clipboard

[REST] Module does not reset client before each request

Open ihorsamusenko opened this issue 6 years ago • 8 comments

What are you trying to achieve?

I write a test which makes several request

$I->sendPOST('/my/url/test');
$I->sendGET('/my/url/test');

What do you get instead?

When I call $I->sendGET('/my/url/test'); it goes to '/my/url/my/url/test' instead of '/my/url/test'

I use REST as follows:

REST:
    depends: Symfony

ihorsamusenko avatar Nov 29 '17 11:11 ihorsamusenko