main
rw-r--r--
6 B
rw-r--r--
1.5 KB
rw-r--r--
45 B
rw-r--r--
825 B
rw-r--r--
209 B
rw-r--r--
220 B

fakjs for your javascript stubbing needs.

To fake out a return value.

  var fake = new Fake();
  fake.stub('greet').with('mo').andReturn('hello mo');
  expect(fake.greet('mo')).toEqual('hello mo');