Skip to content

Commit f4d693d

Browse files
authored
Merge pull request #24 from njfleming/fix_span
Fix span
2 parents 83f811e + 8ec6139 commit f4d693d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

test/subSuites/reqInputTests.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -146,16 +146,7 @@ module.exports = () => {
146146
});
147147

148148
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-
156149
it("body input appears for all other requests", async () => {
157-
await app.client.$("span=GET").click();
158-
await app.client.$("a=POST").click();
159150
bodyInputVisible = await app.client.$("#body-entry-select").isExisting();
160151
assert.strictEqual(bodyInputVisible, true);
161152
});

0 commit comments

Comments
 (0)