svelte-oidc/cypress/integration/OidcContext.spec.js
Darrel O'Pry 4fd62abe31 feat: oidc-client.js based Svelte OidcComponent
follows a pattern similar to @dopry/svelte-auth0,
but uses the more standards compliant oidc-client.js
library.
2020-05-28 11:34:47 -04:00

7 lines
128 B
JavaScript

/// <reference types="Cypress" />
context('Actions', () => {
beforeEach(() => {
cy.visit('http://localhost:5000');
});
});