Skip to content
Snippets Groups Projects
Commit 916c22c6 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire:
Browse files

Merge branch 'dbp-location-select-has-wrong-name' into 'master'

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

See merge request !5
parents 7f438c9c 0b0ad44e
No related branches found
No related tags found
1 merge request!5Rename component to dbp-check-in-place-select (#34)
Pipeline #14021 passed
import '../src/dbp-location-select.js';
import '../src/dbp-check-in-place-select.js';
import '../src/demo.js';
describe('dbp-location-select basics', () => {
describe('dbp-check-in-place-select basics', () => {
let node;
beforeEach(async () => {
node = document.createElement('dbp-location-select');
node = document.createElement('dbp-check-in-place-select');
document.body.appendChild(node);
await node.updateComplete;
});
......@@ -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;
beforeEach(async () => {
node = document.createElement('dbp-location-select-demo');
node = document.createElement('dbp-check-in-place-select-demo');
document.body.appendChild(node);
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