We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83f811e + 8ec6139 commit f4d693dCopy full SHA for f4d693d
test/subSuites/reqInputTests.js
@@ -146,16 +146,7 @@ module.exports = () => {
146
});
147
148
describe("request body inputs", () => {
149
- it("no body input for GET requests", async () => {
150
- await app.client.$("span=DELETE").click();
151
- await app.client.$("a=GET").click();
152
- bodyInputVisible = await app.client.$("#body-entry-select");
153
- assert.strictEqual(bodyInputVisible.state, "failure");
154
- });
155
-
156
it("body input appears for all other requests", async () => {
157
- await app.client.$("span=GET").click();
158
- await app.client.$("a=POST").click();
159
bodyInputVisible = await app.client.$("#body-entry-select").isExisting();
160
assert.strictEqual(bodyInputVisible, true);
161
0 commit comments