diff --git a/src/app/credExplorer/App.js b/src/app/credExplorer/App.js index 63e3ab5..cffaff6 100644 --- a/src/app/credExplorer/App.js +++ b/src/app/credExplorer/App.js @@ -80,15 +80,21 @@ export function createApp( /> ); } + const spacer = () => ( + + ); return (
-

- - This is a prototype. Please{" "} - - let us know what you think - . - +

+ + what is this? + + {spacer()} + feedback

{ it("should have a feedback link with a valid URL", () => { const {el} = example(); - const link = el - .find("a") - .filterWhere((x) => x.text().includes("let us know what you think")); + const link = el.find("a").filterWhere((x) => x.text().includes("feedback")); expect(link).toHaveLength(1); expect(link.prop("href")).toMatch(/https?:\/\//); });