We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e564dd1 commit dbe4599Copy full SHA for dbe4599
1 file changed
test/test.gist.js
@@ -2,16 +2,18 @@
2
3
var Github = require('../src/github.js');
4
var testUser = require('./user.json');
5
-var github = new Github({
6
- username: testUser.USERNAME,
7
- password: testUser.PASSWORD,
8
- auth: 'basic'
9
-});
+var github;
10
11
describe('Github.Gist', function() {
12
var gist;
13
14
before(function() {
+ github = new Github({
+ username: testUser.USERNAME,
+ password: testUser.PASSWORD,
+ auth: 'basic'
15
+ });
16
+
17
gist = github.getGist('f1c0f84e53aa6b98ec03');
18
});
19
0 commit comments