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 7647105 commit 401b1edCopy full SHA for 401b1ed
cli/test/cs_with_bnddir.test.ts
@@ -66,6 +66,14 @@ describe(`pseudo tests`, () => {
66
expect(empdetImpacts.find(f => f.systemName === `TEMPDETT` && f.type === `MODULE`)).toBeDefined();
67
});
68
69
+ test('Deps are picked up for the service program', () => {
70
+ const empdet = targets.getTarget({systemName: `EMPDET`, type: `SRVPGM`});
71
+ expect(empdet).toBeDefined();
72
+
73
+ expect(empdet.deps.length).toBe(1);
74
+ expect(empdet.deps.find(f => f.systemName === `EMPDET` && f.type === `MODULE`)).toBeDefined();
75
+ });
76
77
test('Deps are picked up for the module', () => {
78
const empdet = targets.getTarget({systemName: `EMPDET`, type: `MODULE`});
79
expect(empdet).toBeDefined();
0 commit comments