LoginSignup
2
2

More than 5 years have passed since last update.

雑なsinon.fakeServerの使い方

Last updated at Posted at 2014-01-31

これが最高に雑で便利なパターン

it 'should call callback ', (done) ->
  server = sinon.fakeServer.create()
  $.get('/foo').done -> done()
  server.requests[0].respond(200, 'foo')
  server.restore()
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2