fix: fix typescript errors (coming from update)
This commit is contained in:
parent
c02046817e
commit
69f06b2e0c
|
@ -53,7 +53,7 @@ describe('Frontend Utils', function() {
|
|||
});
|
||||
|
||||
fc.assert(
|
||||
fc.property(classObjectArbitrary, (classObject) => {
|
||||
fc.property(classObjectArbitrary, (classObject: any) => {
|
||||
const expectedClasses = Object.keys(classObject).filter((key) => classObject[key]);
|
||||
const compiled = c(classObject);
|
||||
|
||||
|
@ -75,7 +75,7 @@ describe('Frontend Utils', function() {
|
|||
});
|
||||
|
||||
fc.assert(
|
||||
fc.property(styleObjectArbitrary, (styleObject) => {
|
||||
fc.property(styleObjectArbitrary, (styleObject: any) => {
|
||||
const expectedString = Object.keys(styleObject)
|
||||
.filter((key) => {
|
||||
const value = styleObject[key];
|
||||
|
|
Loading…
Reference in New Issue