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.
JavaScript test descriptions are wrong (and also grammatically incorrect):
Test.assertEquals(buildOneTwoThree().data, 1, "First node should should have 1 as data.");
Test.assertEquals(buildOneTwoThree().next.data, 2, "First node should should have 1 as data.");
Test.assertEquals(buildOneTwoThree().next.next.data, 3, "Second node should should have 2 as data.");
Test.assertEquals(buildOneTwoThree().next.next.next, null, "Third node should should have 3 as data.");
Problems:
All of this is very misleading.
Yep, really annoying, got bitten by it just now.