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 755c493 commit 82cf1d1Copy full SHA for 82cf1d1
src/reporter/github/index.test.js
@@ -33,6 +33,7 @@ describe('GitHub', function () {
33
34
nock('https://api.github.com')
35
.get('/repos/owner/repo/labels')
36
+ .query(true)
37
.reply(200, existingLabels);
38
39
const missingLabels = MANAGED_LABELS.slice(-2);
@@ -61,6 +62,7 @@ describe('GitHub', function () {
61
62
before(async () => {
63
scope = nock('https://api.github.com')
64
65
66
.reply(200, LABELS);
67
68
result = await github.getRepositoryLabels();
0 commit comments