Skip to content
Snippets Groups Projects
Commit 039aea23 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Fix warnings

parent 43606024
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ describe('utils', () => { ...@@ -18,7 +18,7 @@ describe('utils', () => {
super(); super();
this.foo = 42; this.foo = 42;
} }
}; }
var res = utils.defineCustomElement("test-some-element", SomeElement); var res = utils.defineCustomElement("test-some-element", SomeElement);
expect(res).to.equal(true); expect(res).to.equal(true);
...@@ -36,11 +36,11 @@ describe('utils', () => { ...@@ -36,11 +36,11 @@ describe('utils', () => {
it('getAssetURL', () => { it('getAssetURL', () => {
utils.initAssetBaseURL(); utils.initAssetBaseURL();
assert(utils.getAssetURL("foo/bar") == "foo/bar"); assert(utils.getAssetURL("foo/bar") === "foo/bar");
assert(utils.getAssetURL("foo/bar") == "foo/bar"); assert(utils.getAssetURL("foo/bar") === "foo/bar");
}) });
it('getThemeCSS', () => { it('getThemeCSS', () => {
styles.getThemeCSS(); styles.getThemeCSS();
}) });
}); });
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