Skip to content

Commit

Permalink
added todos for updating to latest cdi version when skipping tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niftyvictor committed Dec 3, 2024
1 parent ec36c5b commit 810e373
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/webauthn/apis.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down Expand Up @@ -136,6 +137,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down Expand Up @@ -199,6 +201,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down Expand Up @@ -265,6 +268,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down Expand Up @@ -338,6 +342,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down Expand Up @@ -435,6 +440,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down Expand Up @@ -581,6 +587,7 @@ describe(`apisFunctions: ${printPath("[test/webauthn/apis.test.js]")}`, function
});

// run test if current CDI version >= 2.11
// todo update this to crrect version
if (!(await isCDIVersionCompatible("2.11"))) return;

const app = express();
Expand Down

0 comments on commit 810e373

Please sign in to comment.