This commit is contained in:
Christopher Anderson 2017-10-17 01:01:42 -07:00
Родитель f1c5294656
Коммит 5eb7e292f7
3 изменённых файлов: 30 добавлений и 1 удалений

4
.gitignore поставляемый
Просмотреть файл

@ -2,6 +2,8 @@ coverage/
node_modules/
npm-debug.log
lib
/lib/*
!test/e2e/sample/lib/*
**/*.csv

Просмотреть файл

@ -0,0 +1,9 @@
module.exports = function (context, req) {
context.log('"./lib/externalScriptFile" function called');
const res = {
body: {
"success":true
}
}
context.done(null, res);
};

Просмотреть файл

@ -0,0 +1,18 @@
let sql = require('tedious');
class Model {
getAll() {
const request = new sql.Request("select 'hello'", function(err, rowCount) {
// no op
});
return Promise.resolve([]);
}
add() {
return Promise.resolve({});
}
}
module.exports = {
Model: Model
}