correctly stub methods and test errors

This commit is contained in:
Matteo Pagliazzi
2016-03-20 16:06:31 +01:00
parent 657f19af0d
commit fea2e0d8c0
6 changed files with 60 additions and 40 deletions

View File

@@ -107,7 +107,18 @@ api.ops = {
sleep,
allocate,
};
api.fns = {};
import handleTwoHanded from './fns/handleTwoHanded';
import predictableRandom from './fns/predictableRandom';
import randomVal from './fns/randomVal';
import ultimateGear from './fns/ultimateGear';
api.fns = {
handleTwoHanded,
predictableRandom,
randomVal,
ultimateGear,
};
/*