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.
Not a kata issue.
Print the arguments, and:
It does say two or more there. You don't need to discover anything if you read that.
I can't understand Incredible flight of the authors fantasy. In the example section he shows that function must work with 2 arguments, looking in base tests we need to discover that function can have three arguments... OK, I wrote solution that pass all base tests but when I press "Attempt" button I recived 10 passed and 11 wrong.
I think the problem occours because of incorrect or incomplete initial information.
How I can guess what data contains failed tests?
This comment is hidden because it contains spoiler information about the solution
Your usage of.Object.defineProperty()
makes no sense, I suggest you rethink that part of your code.Sorry for my previous message, I should have tested your code. Your code does produce very sensible results, the problem is that the properties defined by
Object.defineProperty()
are notenumerable
by default, andassert.deepEquals()
appears to consider that enumerability in its comparison. You need to find a way to make those propertiesenumerable
.The
ISSUE
tag if for issues with the kata, not issues with your solution.This comment is hidden because it contains spoiler information about the solution