Skip to content

Commit 1d91760

Browse files
author
Rishabh
committed
changes passwordless tests to use correct CDI version
1 parent d74643e commit 1d91760

File tree

3 files changed

+102
-102
lines changed

3 files changed

+102
-102
lines changed

test/passwordless/apis.test.js

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
7070
],
7171
});
7272

73-
// run test if current CDI version >= 2.10
74-
if (!(await isCDIVersionCompatible("2.10"))) {
73+
// run test if current CDI version >= 2.11
74+
if (!(await isCDIVersionCompatible("2.11"))) {
7575
return;
7676
}
7777

@@ -165,8 +165,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
165165
],
166166
});
167167

168-
// run test if current CDI version >= 2.10
169-
if (!(await isCDIVersionCompatible("2.10"))) {
168+
// run test if current CDI version >= 2.11
169+
if (!(await isCDIVersionCompatible("2.11"))) {
170170
return;
171171
}
172172

@@ -260,8 +260,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
260260
],
261261
});
262262

263-
// run test if current CDI version >= 2.10
264-
if (!(await isCDIVersionCompatible("2.10"))) {
263+
// run test if current CDI version >= 2.11
264+
if (!(await isCDIVersionCompatible("2.11"))) {
265265
return;
266266
}
267267

@@ -347,8 +347,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
347347
],
348348
});
349349

350-
// run test if current CDI version >= 2.10
351-
if (!(await isCDIVersionCompatible("2.10"))) {
350+
// run test if current CDI version >= 2.11
351+
if (!(await isCDIVersionCompatible("2.11"))) {
352352
return;
353353
}
354354

@@ -432,8 +432,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
432432
],
433433
});
434434

435-
// run test if current CDI version >= 2.10
436-
if (!(await isCDIVersionCompatible("2.10"))) {
435+
// run test if current CDI version >= 2.11
436+
if (!(await isCDIVersionCompatible("2.11"))) {
437437
return;
438438
}
439439

@@ -519,8 +519,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
519519
],
520520
});
521521

522-
// run test if current CDI version >= 2.10
523-
if (!(await isCDIVersionCompatible("2.10"))) {
522+
// run test if current CDI version >= 2.11
523+
if (!(await isCDIVersionCompatible("2.11"))) {
524524
return;
525525
}
526526

@@ -643,8 +643,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
643643
],
644644
});
645645

646-
// run test if current CDI version >= 2.10
647-
if (!(await isCDIVersionCompatible("2.10"))) {
646+
// run test if current CDI version >= 2.11
647+
if (!(await isCDIVersionCompatible("2.11"))) {
648648
return;
649649
}
650650

@@ -703,8 +703,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
703703
],
704704
});
705705

706-
// run test if current CDI version >= 2.10
707-
if (!(await isCDIVersionCompatible("2.10"))) {
706+
// run test if current CDI version >= 2.11
707+
if (!(await isCDIVersionCompatible("2.11"))) {
708708
return;
709709
}
710710

@@ -793,8 +793,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
793793
],
794794
});
795795

796-
// run test if current CDI version >= 2.10
797-
if (!(await isCDIVersionCompatible("2.10"))) {
796+
// run test if current CDI version >= 2.11
797+
if (!(await isCDIVersionCompatible("2.11"))) {
798798
return;
799799
}
800800

@@ -912,8 +912,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
912912
],
913913
});
914914

915-
// run test if current CDI version >= 2.10
916-
if (!(await isCDIVersionCompatible("2.10"))) {
915+
// run test if current CDI version >= 2.11
916+
if (!(await isCDIVersionCompatible("2.11"))) {
917917
return;
918918
}
919919

@@ -979,8 +979,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
979979
],
980980
});
981981

982-
// run test if current CDI version >= 2.10
983-
if (!(await isCDIVersionCompatible("2.10"))) {
982+
// run test if current CDI version >= 2.11
983+
if (!(await isCDIVersionCompatible("2.11"))) {
984984
return;
985985
}
986986

@@ -1060,8 +1060,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
10601060
],
10611061
});
10621062

1063-
// run test if current CDI version >= 2.10
1064-
if (!(await isCDIVersionCompatible("2.10"))) {
1063+
// run test if current CDI version >= 2.11
1064+
if (!(await isCDIVersionCompatible("2.11"))) {
10651065
return;
10661066
}
10671067

@@ -1142,8 +1142,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
11421142
],
11431143
});
11441144

1145-
// run test if current CDI version >= 2.10
1146-
if (!(await isCDIVersionCompatible("2.10"))) {
1145+
// run test if current CDI version >= 2.11
1146+
if (!(await isCDIVersionCompatible("2.11"))) {
11471147
return;
11481148
}
11491149

@@ -1206,8 +1206,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
12061206
],
12071207
});
12081208

1209-
// run test if current CDI version >= 2.10
1210-
if (!(await isCDIVersionCompatible("2.10"))) {
1209+
// run test if current CDI version >= 2.11
1210+
if (!(await isCDIVersionCompatible("2.11"))) {
12111211
return;
12121212
}
12131213

@@ -1295,8 +1295,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
12951295
],
12961296
});
12971297

1298-
// run test if current CDI version >= 2.10
1299-
if (!(await isCDIVersionCompatible("2.10"))) {
1298+
// run test if current CDI version >= 2.11
1299+
if (!(await isCDIVersionCompatible("2.11"))) {
13001300
return;
13011301
}
13021302

@@ -1386,8 +1386,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
13861386
],
13871387
});
13881388

1389-
// run test if current CDI version >= 2.10
1390-
if (!(await isCDIVersionCompatible("2.10"))) {
1389+
// run test if current CDI version >= 2.11
1390+
if (!(await isCDIVersionCompatible("2.11"))) {
13911391
return;
13921392
}
13931393

@@ -1470,8 +1470,8 @@ describe(`apisFunctions: ${printPath("[test/passwordless/apis.test.js]")}`, func
14701470
],
14711471
});
14721472

1473-
// run test if current CDI version >= 2.10
1474-
if (!(await isCDIVersionCompatible("2.10"))) {
1473+
// run test if current CDI version >= 2.11
1474+
if (!(await isCDIVersionCompatible("2.11"))) {
14751475
return;
14761476
}
14771477

0 commit comments

Comments
 (0)