We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Router.js#247 throws this error when run from Cypress integration tests in our GitHub runner.
index.ts
const router = new Router(document.querySelector('body')); router.setRoutes([{path: '/test', component: 'root-view'}], true);
root-view.ts
import { LitElement, html } from "lit-element"; export class RootView extends LitElement { render() { return html`Hi`; } } customElements.define("root-view", RootView);
The text was updated successfully, but these errors were encountered:
Sounds like you have a custom element with a constructor that sets attributes
Sorry, something went wrong.
Hey @Artur- , thanks for the reply. As you can see there is only one element in our project and it does not in fact have a constructor.
No branches or pull requests
Router.js#247 throws this error when run from Cypress integration tests in our GitHub runner.
Versions:
Known Facts:
index.ts
root-view.ts
The text was updated successfully, but these errors were encountered: