You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -13,10 +14,11 @@ describe('Create job specific kubernetes tests', async function () {
13
14
nock.cleanAll();
14
15
});
15
16
constjobPlatform=process.env.JOB_PLATFORM;
16
-
if(jobPlatform==='KUBERNETES'){
17
+
if(jobPlatform.toUpperCase()==='KUBERNETES'){
17
18
describe('Kubernetes',()=>{
18
19
describe('Good requests',()=>{
19
20
before(async()=>{
21
+
awaitconfigManagerRequestCreator.init();
20
22
awaitschedulerRequestCreator.init();
21
23
awaittestsRequestCreator.init();
22
24
@@ -101,7 +103,8 @@ describe('Create job specific kubernetes tests', async function () {
101
103
arrival_rate: 1,
102
104
duration: 1,
103
105
environment: 'test',
104
-
enabled: true});
106
+
enabled: true
107
+
});
105
108
106
109
should(relevantJobs).containEql({
107
110
id: cronJobId,
@@ -285,11 +288,23 @@ describe('Create job specific kubernetes tests', async function () {
285
288
});
286
289
});
287
290
288
-
describe('Create one time job with parallelism, should create job with the right parameters and run it, finally stop and delete it',()=>{
291
+
describe('Create one time job with parallelism and custom runner definition, should create job with the right parameters and run it, finally stop and delete it',()=>{
0 commit comments