We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.get{Scope name}Api()
1 parent 31ba34a commit 1956da2Copy full SHA for 1956da2
test/integration/smoke-test.js
@@ -8,7 +8,7 @@ const describe = mocha.describe
8
const it = mocha.it
9
const should = chai.should()
10
11
-describe('constructor', () => {
+describe('smoke', () => {
12
it('called as function', () => {
13
GitHub()
14
})
@@ -27,12 +27,6 @@ describe('constructor', () => {
27
return github.orgs.get({org: 'myorg'})
28
29
30
- it('has .getReposApi() method', () => {
31
- const github = new GitHub()
32
- const api = github.getReposApi()
33
- api.getAll.should.be.a('function')
34
- })
35
-
36
it('callback', (done) => {
37
nock('https://smoke-test.com')
38
.get('/orgs/myorg')
0 commit comments