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

Fix missing imports and add tests

parent aa9525f3
No related branches found
No related tags found
No related merge requests found
"use strict"; "use strict";
import utils from "./utils"; import * as utils from "./utils";
let instances = {}; let instances = {};
let successFunctions = {}; let successFunctions = {};
......
import * as utils from '../utils'; import * as utils from '../utils';
import '../vpu-mini-spinner.js';
import '../jsonld.js';
describe('utils', () => { describe('utils', () => {
it('base64EncodeUnicode', () => { it('base64EncodeUnicode', () => {
......
import {html, LitElement, css} from 'lit-element'; import {html, LitElement, css} from 'lit-element';
import commonUtils from './utils.js'; import * as commonUtils from './utils.js';
class MiniSpinner extends LitElement { class MiniSpinner extends LitElement {
......
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