Browse Source

Update HTTP.test.tsx to ensure "https://" prefix is used if needed

Small test update to prevent regression of #481 

#482 fixed the issue, this new test would have failed before, and will prevent reoccurrence of the issue
pull/484/head
Tadas Varanauskas 1 year ago
committed by GitHub
parent
commit
4ffbe03b22
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/components/PageComponents/Connect/HTTP.test.tsx

2
src/components/PageComponents/Connect/HTTP.test.tsx

@ -68,6 +68,8 @@ describe("HTTP Component", () => {
const switchInput = screen.getByRole("switch");
expect(switchInput).toBeChecked();
expect(screen.getByText("https://")).toBeInTheDocument();
});
it.skip("submits form and triggers connection process", () => {

Loading…
Cancel
Save