@revoloo/cypress6
Version:
Cypress.io end to end testing tool
26 lines (20 loc) • 701 B
text/typescript
import { oneLine } from 'common-tags'
export function partial (domain) {
return oneLine`
<script type='text/javascript'>
document.domain = '${domain}';
</script>
`
}
export function full (domain) {
return oneLine`
<script type='text/javascript'>
document.domain = '${domain}';
var Cypress = window.Cypress = parent.Cypress;
if (!Cypress) {
throw new Error('Something went terribly wrong and we cannot proceed. We expected to find the global Cypress in the parent window but it is missing!. This should never happen and likely is a bug. Please open an issue!');
};
Cypress.action('app:window:before:load', window);
</script>
`
}