Skip to content
Snippets Groups Projects
Commit 0b0ad44e authored by Tögl, Christina's avatar Tögl, Christina Committed by Bekerle, Patrizio
Browse files

Rename component to dbp-check-in-place-select (#34)

parent 7f438c9c
No related branches found
No related tags found
No related merge requests found
import '../src/dbp-location-select.js'; import '../src/dbp-check-in-place-select.js';
import '../src/demo.js'; import '../src/demo.js';
describe('dbp-location-select basics', () => { describe('dbp-check-in-place-select basics', () => {
let node; let node;
beforeEach(async () => { beforeEach(async () => {
node = document.createElement('dbp-location-select'); node = document.createElement('dbp-check-in-place-select');
document.body.appendChild(node); document.body.appendChild(node);
await node.updateComplete; await node.updateComplete;
}); });
...@@ -19,11 +19,11 @@ describe('dbp-location-select basics', () => { ...@@ -19,11 +19,11 @@ describe('dbp-location-select basics', () => {
}); });
}); });
describe('dbp-location-select-demo basics', () => { describe('dbp-check-in-place-select-demo basics', () => {
let node; let node;
beforeEach(async () => { beforeEach(async () => {
node = document.createElement('dbp-location-select-demo'); node = document.createElement('dbp-check-in-place-select-demo');
document.body.appendChild(node); document.body.appendChild(node);
await node.updateComplete; await node.updateComplete;
}); });
......
import * as commonUtils from 'dbp-common/utils';
import {LocationSelect} from './location-select.js';
commonUtils.defineCustomElement('dbp-location-select', LocationSelect);
import './dbp-location-select-demo.js';
import {LocationSelect} from './location-select.js';
export {LocationSelect};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment