You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
487 B
28 lines
487 B
semantic.api = {};
|
|
|
|
// ready event
|
|
semantic.api.ready = function() {
|
|
|
|
var
|
|
headers = {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
method = 'GET',
|
|
responseCode = 200,
|
|
body = '{ "success": "true" }',
|
|
server = sinon.fakeServer.create()
|
|
;
|
|
|
|
server.autoRespond = true;
|
|
server.autoRespondAfter = 500;
|
|
|
|
server
|
|
.respondWith(method, '/api/follow/5209', [responseCode, headers, body])
|
|
;
|
|
};
|
|
|
|
|
|
// attach ready event
|
|
$(document)
|
|
.ready(semantic.api.ready)
|
|
;
|