We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 176059c commit fe2a233Copy full SHA for fe2a233
package.json
@@ -1,15 +1,15 @@
1
{
2
"name": "mwn",
3
- "version": "0.7.0",
4
- "description": "MediaWiki bot framework for NodeJS",
+ "version": "0.7.1",
+ "description": "MediaWiki bot framework for Node.js",
5
"main": "./src/bot.js",
6
"scripts": {
7
"test": "mocha tests/",
8
"bump": "node bump-version.js"
9
},
10
"repository": {
11
"type": "git",
12
- "url": "github.com/siddharthvp/mwn"
+ "url": "https://github.com/siddharthvp/mwn"
13
14
"keywords": [
15
"wikipedia-bot"
tests/test_base.js
@@ -23,8 +23,6 @@ let bot2 = new mwn({
23
});
24
25
let loginBefore = function() {
26
- this.timeout(7000);
27
-
28
bot.initOAuth();
29
return bot.getTokensAndSiteInfo().then(() => {
30
expect(bot.csrfToken).to.be.a('string');
0 commit comments