I'm new to Node and to TDD and I'm trying to get my head around how to create tests locally for Codewars JS Katas.
I've got as far as making var cw = require('kata-test-framework-js');
work by using this answer: https://stackoverflow.com/a/18778516/3042018
I can make is work like this: cw.Test.assertSimilar([1,2,2],[1,2,3]);
but I'd like to be able to use the exact test code from the katas - i.e. without having to prefix everything with cw.
Can anyone explain how to do this please?