Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/necojackarc/auto-request-re…
Browse files Browse the repository at this point in the history
…view
  • Loading branch information
necojackarc committed May 23, 2023
2 parents 4bc5b46 + a39c70b commit fec2e6a
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions test/reviewer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,20 +147,7 @@ describe('reviewer', function() {
};

const stub = sinon.stub(github, 'get_team_members');
stub.withArgs('koopa-troop').returns([
{
login: 'bowser',
id: 1,
},
{
login: 'king-boo',
id: 2,
},
{
login: 'goomboss',
id: 3,
},
]);
stub.withArgs('koopa-troop').returns([ 'bowser', 'king-boo', 'goomboss' ]);

it('returns nothing when config does not have a "per-author" key', function() {
const author = 'THIS DOES NOT MATTER';
Expand Down

0 comments on commit fec2e6a

Please sign in to comment.