I have a static method on my Component class that I am testing, my question is how it is possible to access that method within my spec testing file?
So far I can acc
Static methods are not bound to instances of classes. So something like this should work: MyComponent.nameOfStaticMethod(params)
MyComponent.nameOfStaticMethod(params)