Skip to content
Snippets Groups Projects
Commit 99f04b48 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Fix tests

parent 211719a6
No related branches found
No related tags found
No related merge requests found
Pipeline #191235 passed
......@@ -86,7 +86,7 @@ export class DbpAuthDemo extends ScopedElementsMixin(DBPLitElement) {
: html`
<div class="container">
<dbp-auth-keycloak
subscribe="requested-login-status,silent-check-sso-redirect-uri,url,realm,client-id,entry-point-url"
subscribe="requested-login-status,silent-check-sso-redirect-uri,url,realm,client-id"
lang="${this.lang}"
entry-point-url="${this.entryPointUrl}"
try-login></dbp-auth-keycloak>
......
......@@ -47,6 +47,9 @@ suite('dbp-auth-demo basics', () => {
setup(async () => {
node = document.createElement('dbp-auth-demo');
node.setAttribute('url', 'someurl');
node.setAttribute('realm', 'somerealm');
node.setAttribute('client-id', 'someId');
document.body.appendChild(node);
await node.updateComplete;
});
......
......@@ -26,6 +26,9 @@ suite('dbp-data-table-view-demo basics', () => {
setup(async () => {
node = document.createElement('dbp-data-table-view-demo');
node.setAttribute('url', 'someurl');
node.setAttribute('realm', 'somerealm');
node.setAttribute('client-id', 'someId');
document.body.appendChild(node);
await node.updateComplete;
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment