clean up tests

This commit is contained in:
Niels Lyngsø
2023-12-05 09:37:08 +01:00
parent 951acf71f0
commit 6e5deb6de2

View File

@@ -83,12 +83,12 @@ describe('UmbBasicVariantElement', () => {
expect(variantElement).to.be.instanceOf(UmbBasicVariantElement);
});
it('property editor gets value', async () => {
it('property editor gets value', () => {
expect(propertyEditor.alias).to.equal('testAlias');
expect(propertyEditor.getValue()).to.equal('testValue');
});
it('property editor sets value on it self', async () => {
it('property editor sets value on it self', () => {
propertyEditor.setValue('testValue2');
expect(propertyEditor.getValue()).to.equal('testValue2');
});