Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
Added the webhook subscription functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Oct 12, 2016
1 parent 4d49c21 commit 37425dc
Show file tree
Hide file tree
Showing 18 changed files with 266 additions and 12,303 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Expand Up @@ -20,6 +20,25 @@
"sourceMaps": false,
"outDir": null
},
{
"name": "Gulp",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": ["subscriptions-test"],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Expand Up @@ -7,5 +7,6 @@
"build/": true,
"node_modules/": true,
"coverage": true
}
},
"typescript.tsdk": "./node_modules/typescript/lib"
}
6 changes: 6 additions & 0 deletions buildtasks/test.js
Expand Up @@ -34,3 +34,9 @@ gulp.task("test", ["build", "build-tests", "istanbul:hook"], function() {
.pipe(mocha({ ui: 'bdd', reporter: 'dot', timeout: 10000 }))
.pipe(istanbul.writeReports());
});

gulp.task("subscriptions-test", ["build", "build-tests", "istanbul:hook"], function() {
return gulp.src('./build/tests/sharepoint/rest/subscriptions.test.js')
.pipe(mocha({ ui: 'bdd', reporter: 'dot', timeout: 10000 }))
.pipe(istanbul.writeReports());
});

0 comments on commit 37425dc

Please sign in to comment.