We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b725b commit 62a4dcbCopy full SHA for 62a4dcb
cypress.json
@@ -0,0 +1,5 @@
1
+{
2
+ "supportFile": false,
3
+ "pluginsFile": false,
4
+ "fixturesFolder": false
5
+}
cypress/integration/spec.js
@@ -0,0 +1,9 @@
+/// <reference types="cypress" />
+it('loads page', () => {
+ if (Cypress.config('baseUrl')) {
+ cy.visit('/')
+ } else {
6
+ cy.visit('public/index.html')
7
+ }
8
+ cy.contains('Placeholder').should('be.visible')
9
+})
0 commit comments