disable tavern-ci urlencode

Viewed 26

i running tavern-ci test and i have url encoded:

in tavern:

  test_name: test 1

  stages:
    - name: test 1
      request:
        url: 'http://127.0.0.1/check?"&@
        method: GET
      response:
        status_code: 200

i show in the log

  "GET /check?%22&@ HTTP/1.1" 200
               ^ i do not dont want %22 i want "

but i run curl i show

  "GET /check?"&@ HTTP/1.1" 200

i dont want url encoded in tavern how to off so i can have real character

0 Answers
Related