Skip to content

Commit 3b6868d

Browse files
Vadim Trishinafr1ka
Vadim Trishin
authored andcommitted
Fixed test for HEAD method
1 parent d20dee9 commit 3b6868d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.dockerignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
resources/dev/wallarm_api.db
1+
resources/dev/wallarm_api.db
2+
resources/test/**/*

resources/test/specification/script.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -469,12 +469,9 @@ export default function() {
469469
let params = {headers: apifwHeaders};
470470
let request = http.request('HEAD', url, undefined, params);
471471

472-
console.log(request.body);
473-
474-
// FIXME https://wallarm.atlassian.net/browse/KERBEROS-1470
472+
// k6 does not allow to get body of the HEAD requests, so we only verify that status code of the response is correct
475473
check(request, {
476474
"Is response status 200": (r) => r.status === 200,
477-
"Is response body status 200 (KERBEROS-1470)": (r) => r.json("summary.0.status_code") === 200
478475
});
479476
}
480477
});

0 commit comments

Comments
 (0)