Skip to content

Commit 79a0f11

Browse files
JACK SARTOREGitHub Enterprise
authored andcommitted
feat(v4): Added additional int test, commit msg for semantic release (#27)
BREAKING CHANGE: Removed SoureURL from required fields for build create operations
1 parent 5dd6eff commit 79a0f11

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

test/integration/v2.test.js

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -592,26 +592,6 @@ describe('CodeEngineV2_integration', () => {
592592
expect(res.result).toBeDefined();
593593
});
594594

595-
test('listBindings()', async () => {
596-
const params = {
597-
projectId: e2eTestProjectId,
598-
limit: 100,
599-
};
600-
601-
const allResults = [];
602-
try {
603-
const pager = new CodeEngineV2.BindingsPager(codeEngineService, params);
604-
while (pager.hasNext()) {
605-
const nextPage = await pager.getNext();
606-
expect(nextPage).not.toBeNull();
607-
allResults.push(...nextPage);
608-
}
609-
console.log(JSON.stringify(allResults, null, 2));
610-
} catch (err) {
611-
console.warn(err);
612-
}
613-
});
614-
615595
test('createServiceAccessSecret', async () => {
616596
const params = {
617597
projectId: e2eTestProjectId,
@@ -670,6 +650,26 @@ describe('CodeEngineV2_integration', () => {
670650
}
671651
});
672652

653+
test('listBindings()', async () => {
654+
const params = {
655+
projectId: e2eTestProjectId,
656+
limit: 100,
657+
};
658+
659+
const allResults = [];
660+
try {
661+
const pager = new CodeEngineV2.BindingsPager(codeEngineService, params);
662+
while (pager.hasNext()) {
663+
const nextPage = await pager.getNext();
664+
expect(nextPage).not.toBeNull();
665+
allResults.push(...nextPage);
666+
}
667+
console.log(JSON.stringify(allResults, null, 2));
668+
} catch (err) {
669+
console.warn(err);
670+
}
671+
});
672+
673673
test('deleteBinding()', async () => {
674674
const params = {
675675
projectId: e2eTestProjectId,

0 commit comments

Comments
 (0)