Browse Source

Merge pull request #484 from varanauskas/patch-1

Update HTTP.test.tsx to ensure "https://" prefix is used if needed
pull/511/head
Dan Ditomaso 1 year ago
committed by GitHub
parent
commit
b670ffe407
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