Static properties generate tests on the instance
Closed this issue · 1 comments
MikePerilli commented
If you have a component with a property:
public static Foo = false;
SimonTest will generate a test on the instance like so:
expect(comp.InitialNavigationComplete).toEqual(false);
This should be (<Class Name>.<propertyName>).toEqual(false);
since the property is static.
ManuelDeLeon commented
Fixed on 0.17.3 =)