UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

27 lines (25 loc) 553 B
<!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>