Skip to content

Commit 75029a4

Browse files
committed
chore: added link to mount
1 parent 36aa1ce commit 75029a4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

packages/cypress-ct-qwik/src/lib/mount.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { JSXNode, RenderResult } from '@builder.io/qwik';
22
import { render } from '@builder.io/qwik';
33
import { getContainerEl, setupHooks } from '@cypress/mount-utils';
44

5-
65
let destroy: () => void | undefined;
76

87
function cleanup() {
@@ -19,13 +18,13 @@ export function mount(element: JSXNode) {
1918
message: 'Component',
2019
consoleProps: () => {
2120
return {
22-
// // @ts-ignore protect the use of jsx functional components use ReactNode
21+
// // @ts-ignore protect the use of jsx functional components use ReactNode
2322
props: element?.props,
2423
description: 'Mounted Qwik component',
25-
home: 'https://github.com/cypress-io/cypress',
26-
}
24+
home: 'https://github.com/qwikifiers/cypress-qwik',
25+
};
2726
},
28-
})
27+
});
2928

3029
return cy.wrap(renderResultPromise, { log: false }).then((renderResult) => {
3130
destroy = (renderResult as RenderResult).cleanup;

0 commit comments

Comments
 (0)