Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
AssertEquals does not work because you're testing arrays, and because arrays are object, AssertEquals tests if they are the same instance, which is not the case.
AssertSimilar checks if the values are the same, even if the instance is not.
Your test currently always pass if the user returns any non falsy result.
You must use assertSimilar and not expect for your tests to behave the way you expect them to.
Your test are not working... You must change Test.expect to Test.assertEquals