Files
cypress/packages/server-ct/test.html
T
Brian Mann af26fbebe6 feat: component testing (#14479)
Co-authored-by: Jessica Sachs <jess@jessicasachs.io>
Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
Co-authored-by: Zach Bloomquist <github@chary.us>
Co-authored-by: Dmitriy Kovalenko <dmtr.kovalenko@outlook.com>
Co-authored-by: ElevateBart <ledouxb@gmail.com>
Co-authored-by: Ben Kucera <14625260+Bkucera@users.noreply.github.com>
2021-02-04 15:45:16 -05:00

27 lines
553 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>cypress/component/app.spec.js</title>
<script>
(function(parent) {
var Cypress = window.Cypress = parent.Cypress;
if (!Cypress) {
throw new Error("Tests cannot run without a reference to Cypress!");
}
return Cypress.onSpecWindow(window, []);
})(window.opener || window.parent);
</script>
<script>
describe('it', () => {
it('works', () => {
expect(true).to.eq(true)
})
})
</script>
</head>
<body>
</body>
</html>