We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f96e77 commit a39c70bCopy full SHA for a39c70b
test/reviewer.test.js
@@ -147,20 +147,7 @@ describe('reviewer', function() {
147
};
148
149
const stub = sinon.stub(github, 'get_team_members');
150
- stub.withArgs('koopa-troop').returns([
151
- {
152
- login: 'bowser',
153
- id: 1,
154
- },
155
156
- login: 'king-boo',
157
- id: 2,
158
159
160
- login: 'goomboss',
161
- id: 3,
162
163
- ]);
+ stub.withArgs('koopa-troop').returns([ 'bowser', 'king-boo', 'goomboss' ]);
164
165
it('returns nothing when config does not have a "per-author" key', function() {
166
const author = 'THIS DOES NOT MATTER';
0 commit comments