Skip to content

Commit 82cf1d1

Browse files
committed
Fix tests
1 parent 755c493 commit 82cf1d1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/reporter/github/index.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ describe('GitHub', function () {
3333

3434
nock('https://api.github.com')
3535
.get('/repos/owner/repo/labels')
36+
.query(true)
3637
.reply(200, existingLabels);
3738

3839
const missingLabels = MANAGED_LABELS.slice(-2);
@@ -61,6 +62,7 @@ describe('GitHub', function () {
6162
before(async () => {
6263
scope = nock('https://api.github.com')
6364
.get('/repos/owner/repo/labels')
65+
.query(true)
6466
.reply(200, LABELS);
6567

6668
result = await github.getRepositoryLabels();

0 commit comments

Comments
 (0)