Skip to content

Commit

Permalink
ci: skip buggy conformance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Mar 4, 2022
1 parent 8a69f2b commit 0dadd8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions certification/runner/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ runner.createTestPlan({

parallel('', () => {
const skips = SKIP ? SKIP.split(',') : [];
skips.push('fapi1-advanced-final-user-rejects-authentication');
skips.push('fapi-rw-id2-user-rejects-authentication');
for (const { testModule, variant } of MODULES) {
const test = skips.includes(testModule) ? it.skip : it;
test(`${testModule}, ${JSON.stringify(variant)}`, async () => {
Expand Down

0 comments on commit 0dadd8c

Please sign in to comment.