It would be nice to use interfake in a Grunt setup as a connect middleware like this:
connect: {
options: {
port: 8080,
hostname: 'localhost'
},
test: {
options: {
middleware: function (connect) {
return [
myInterfakeInstance.asMiddleware()
];
}
}
}
},