Skip to content

Commit

Permalink
test: remove test for .get{Scope name}Api() methods
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Nov 29, 2017
1 parent 31ba34a commit 1956da2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions test/integration/smoke-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const describe = mocha.describe
const it = mocha.it
const should = chai.should()

describe('constructor', () => {
describe('smoke', () => {
it('called as function', () => {
GitHub()
})
Expand All @@ -27,12 +27,6 @@ describe('constructor', () => {
return github.orgs.get({org: 'myorg'})
})

it('has .getReposApi() method', () => {
const github = new GitHub()
const api = github.getReposApi()
api.getAll.should.be.a('function')
})

it('callback', (done) => {
nock('https://smoke-test.com')
.get('/orgs/myorg')
Expand Down

0 comments on commit 1956da2

Please sign in to comment.