Skip to content

Commit

Permalink
Apply actual in-app test, connection is confirmed 👍 (#1921)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenElferink authored Dec 4, 2024
1 parent 831b7d2 commit 1d989dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/webapp/cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Cypress from 'cypress';

const config: Cypress.ConfigOptions = {
e2e: {
baseUrl: 'https://example.cypress.io',
baseUrl: 'http://localhost:3000',
setupNodeEvents(on, config) {},
supportFile: false,
waitForAnimations: true,
Expand Down
7 changes: 3 additions & 4 deletions frontend/webapp/cypress/e2e/spec.cy.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
describe('template spec', () => {
it('passes', () => {
describe('Onboarding', () => {
it('Visiting the root path fetches a config with GraphQL. A fresh install will result in a redirect to the start of onboarding, confirming Front + Back connections', () => {
cy.visit('/');

expect(true).to.equal(true);
cy.location('pathname').should('eq', '/choose-sources');
});
});

0 comments on commit 1d989dd

Please sign in to comment.