Skip to content

Commit 1956da2

Browse files
committedNov 29, 2017
test: remove test for .get{Scope name}Api() methods
1 parent 31ba34a commit 1956da2

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed
 

‎test/integration/smoke-test.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const describe = mocha.describe
88
const it = mocha.it
99
const should = chai.should()
1010

11-
describe('constructor', () => {
11+
describe('smoke', () => {
1212
it('called as function', () => {
1313
GitHub()
1414
})
@@ -27,12 +27,6 @@ describe('constructor', () => {
2727
return github.orgs.get({org: 'myorg'})
2828
})
2929

30-
it('has .getReposApi() method', () => {
31-
const github = new GitHub()
32-
const api = github.getReposApi()
33-
api.getAll.should.be.a('function')
34-
})
35-
3630
it('callback', (done) => {
3731
nock('https://smoke-test.com')
3832
.get('/orgs/myorg')

0 commit comments

Comments
 (0)
Please sign in to comment.